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