getAttributeValue method

dynamic getAttributeValue(
  1. String attributeName, [
  2. dynamic defaultValue
])

Implementation

dynamic getAttributeValue(String attributeName, [dynamic defaultValue]) {
  return properties.containsKey(attributeName) ? properties[attributeName] : defaultValue;
}