getRevision method

Future getRevision()

Gets the parent revision of this artifact.

final revision = await artifact.getRevision();

Implementation

Future<dynamic> getRevision() async {
  return client.getRevision(revisionKref.uri);
}