removeAnimationProperty method
Implementation
@override
String? removeAnimationProperty(String propertyName) {
String? prevValue = EMPTY_STRING;
if (_animationProperties.containsKey(propertyName)) {
prevValue = _animationProperties[propertyName];
_animationProperties.remove(propertyName);
}
return prevValue;
}