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