getAttributeValueEntry method

  1. @override
String? getAttributeValueEntry(
  1. Object? name
)
override

Implementation

@override
String? getAttributeValueEntry(Object? name) {
  if (!hasAttributeValue || name == null) {
    return null;
  }

  var cssEntry = CSSEntry.parse(name as String);
  var cssName = cssEntry != null ? cssEntry.name : name.toString().trim();

  var cssEntry2 = _css.getEntry(cssName);
  return cssEntry2.toString();
}