$getProperty method
Get a property by identifier on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'source':
final _source = $value.source;
return $MapEventSource.wrap(_source);
case 'camera':
final _camera = $value.camera;
return $MapCamera.wrap(_camera);
}
return _superclass.$getProperty(runtime, identifier);
}