removeAll method
inherited
Remove all classes specified in iterable
from element.
This is the Dart equivalent of jQuery's removeClass.
Implementation
void removeAll(Iterable<Object?> iterable) {
modify((s) => s.removeAll(iterable));
}
Remove all classes specified in iterable
from element.
This is the Dart equivalent of jQuery's removeClass.
void removeAll(Iterable<Object?> iterable) {
modify((s) => s.removeAll(iterable));
}