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