getAttribute method
Implementation
dynamic getAttribute(final String key) {
if (attributes == null) {
return null;
}
return attributes?[key];
}
dynamic getAttribute(final String key) {
if (attributes == null) {
return null;
}
return attributes?[key];
}