untag method

Future<void> untag(
  1. String tag
)

Removes a tag from this revision.

await revision.untag('wip');

Implementation

Future<void> untag(String tag) async {
  await client.untagRevision(kref.uri, tag);
  _tags.remove(tag);
}