setDefault method
Sets this artifact as the default for its revision.
The default artifact is returned when a revision kref is resolved without an explicit artifact name.
await mesh.setDefault();
Implementation
Future<void> setDefault() async {
await client.setDefaultArtifact(revisionKref.uri, name);
}