attrValue method

dynamic attrValue(
  1. String name
)

Implementation

attrValue(String name) {
  if (_attributes.containsKey(name)) {
    return _attributes[name]!.value;
  }

  return null;
}