removeTag method

RaliRoute removeTag(
  1. String tag
)

Removes a tag from the route

Implementation

RaliRoute removeTag(String tag) {
  final newTags = tags.where((t) => t != tag).toList();
  return copyWith(tags: newTags);
}