getAttribute method

dynamic getAttribute(
  1. String key
)

Implementation

dynamic getAttribute(final String key) {

  if (attributes == null) {
    return null;
  }

  return attributes?[key];
}