$getProperty method
Get a property by identifier on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'bounds':
final _bounds = $value.bounds;
return $LatLngBounds.wrap(_bounds);
case 'constrain':
return __constrain;
}
return _superclass.$getProperty(runtime, identifier);
}