get<V> method

V get<V>(
  1. MovieTweenPropertyType property
)

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;
}