getLatestRevision method
Gets the latest revision of this bundle.
final latest = await bundle.getLatestRevision();
Implementation
Future<Revision> getLatestRevision() async {
final response = await client.getLatestRevision(kref.uri);
return Revision(response, client);
}