$getProperty method
Get a property by identifier on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'radius':
return $double($value.radius);
case 'calculator':
return $DistanceCalculator.wrap($value.calculator);
case 'call':
return __call;
case 'as':
return __as;
case 'distance':
return __distance;
case 'bearing':
return __bearing;
case 'offset':
return __offset;
}
return _superclass.$getProperty(runtime, identifier);
}