revision property
Gets the parent revision of this artifact.
This is a convenience wrapper around KumihoClient.getRevision that returns the high-level Revision model rather than the protobuf payload.
final rev = await artifact.revision;
Implementation
Future<dynamic> get revision async {
return client.getRevision(revisionKref.uri);
}