toggleAll 抽象方法
在元素上切换指定在 iterable
中的所有类。
遍历 iterable
的项目,如果没有则添加,如果有则移除。这是 Dart 中 jQuery 的 toggleClass 的等效方法。如果 shouldAdd
为 true,则始终向 iterable
元素添加所有类。如果 shouldAdd
为 false,则始终从元素中移除 iterable
中的所有类。
iterable
的每个元素都必须是表示单个类的有效 '标记',即不包含空白的非空字符串。
实现
void toggleAll(Iterable<String> iterable, [bool? shouldAdd]);