removeAll method

void removeAll(
  1. Set<EasyAttribute<Object?>> attributes
)

Implementation

void removeAll(Set<EasyAttribute> attributes) {
  for (final EasyAttribute<Object?> attr in attributes) {
    remove(attr.key);
  }
}