add 方法

bool add(
  1. String value
)
继承

将类 value 添加到元素中。

这是 jQuery 的 addClass 在 Dart 中的等效方法。

实现

bool add(String value) {
  _validateToken(value);
  // TODO - figure out if we need to do any validation here
  // or if the browser natively does enough.
  return modify((s) => s.add(value)) ?? false;
}