classesList property
Returns the list of class names of the attribute class
.
Implementation
List<String> get classesList {
var attribute = getAttribute('class');
if (attribute == null) return [];
return attribute.values ?? [];
}
Returns the list of class names of the attribute class
.
List<String> get classesList {
var attribute = getAttribute('class');
if (attribute == null) return [];
return attribute.values ?? [];
}