$getProperty method
Get a property by identifier on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'hitValues':
return $List.view($value.hitValues, (e) => $Object(e));
case 'coordinate':
return runtime.wrapAlways($value.coordinate);
case 'point':
return $Offset.wrap($value.point);
}
return _superclass.$getProperty(runtime, identifier);
}