removeAll method

dynamic removeAll(
  1. List<String> value
)

Implementation

removeAll(List<String> value) {
  for (String val in value) {
    this.remove(val);
  }
}