removeProperty method
Implementation
@override
void removeProperty(String key) {
super.removeProperty(key);
switch (key) {
case 'loop':
controller?.setLooping(false);
break;
case 'muted':
controller?.setMuted(false);
break;
}
}