$getProperty method
Get a property by identifier on this instance
Implementation
@override
$Value? $getProperty(Runtime runtime, String identifier) {
switch (identifier) {
case 'scaleFactor':
return $double($value.scaleFactor);
case 'to':
return __to;
}
return _superclass.$getProperty(runtime, identifier);
}