onRemove method

void onRemove(
  1. DropdownOption<T> option
)

Implementation

void onRemove(DropdownOption<T> option) {
  this._options.remove(option.value.hashCode);
  widget.onChanged(_options.values.toList());
  _debounceSetOptions();
}