wasTagged method

Future<bool> wasTagged(
  1. String tag
)

Checks if this revision has ever had a specific tag.

if (await revision.wasTagged('reviewed')) {
  print('Revision was reviewed at some point');
}

Implementation

Future<bool> wasTagged(String tag) async {
  return client.wasTagged(kref.uri, tag);
}