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