remove method

void remove(
  1. WidgetEvent event
)

Mutator to mark a T value as inactive.

Implementation

void remove(WidgetEvent event) {
  if (value.remove(event)) {
    notifyListeners();
  }
}