dart / 2 / dart-svg / attributeclassset / contains.html

contains method

bool contains(
  1. Object? value
)
inherited

Determine if this element contains the class value.

This is the Dart equivalent of jQuery's hasClass.

Implementation

bool contains(Object? value) {
  if (value is! String) return false;
  _validateToken(value);
  return readClasses().contains(value);
}

© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-svg/AttributeClassSet/contains.html