removeTag method

Future<void> removeTag(
  1. String tag
)

Removes the tag with the provided key and saves the new array of tags. @param tag The key of the tag that needs to be removed.

Implementation

Future<void> removeTag(String tag) async {
  await removeTags([tag]);
}