removeValue method

void removeValue(
  1. V item
)

Implementation

void removeValue(V item) {
  value = List<V>.from(value)..remove(item);
}