get<V> method
Returns the value for a given property
.
Implementation
V get<V>(MovieTweenPropertyType property) {
assert(_map.containsKey(property), 'Property $property was not found.');
return _map[property] as V;
}
Returns the value for a given property
.
V get<V>(MovieTweenPropertyType property) {
assert(_map.containsKey(property), 'Property $property was not found.');
return _map[property] as V;
}