getRevisions method
Gets all revisions of this bundle.
final revisions = await bundle.getRevisions();
Implementation
Future<List<Revision>> getRevisions() async {
final response = await client.getRevisions(kref.uri);
return response.revisions.map((r) => Revision(r, client)).toList();
}