$getProperty method

  1. @override
$Value? $getProperty(
  1. Runtime runtime,
  2. String identifier
)

Get a property by identifier on this instance

Implementation

@override
$Value? $getProperty(Runtime runtime, String identifier) {
  switch (identifier) {
    case 'globalPosition':
      return $Offset.wrap($value.globalPosition);
    case 'localPosition':
      return $Offset.wrap($value.localPosition);
    case 'velocity':
      return $Velocity.wrap($value.velocity);
    default:
      return _superclass.$getProperty(runtime, identifier);
  }
}