remove method

void remove(
  1. String item
)

Implementation

void remove(String item) {
  value = value.where((e) => e != item).toList();
}