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