setAttribute method
Implementation
@override
void setAttribute(String key, String value) {
super.setAttribute(key, value);
switch (key) {
case 'src': src = attributeToProperty<String>(value); break;
case 'loop': loop = attributeToProperty<bool>(value); break;
case 'currentTime': currentTime = attributeToProperty<int>(value); break;
}
}