remove method

void remove(
  1. T value
)

Implementation

void remove(T value) {
  for (final item in elements) {
    item.remove(value);
  }
}