removeTag method
Implementation
void removeTag(int index) {
if (index < 0 || index >= _tags.length) return;
final removedTag = _tags[index];
_tags.removeAt(index);
notifyListeners();
widget.onTagRemoved?.call(removedTag);
widget.onTagsChanged?.call(_tags);
}