$elliptical static method

$Value? $elliptical(
  1. Runtime runtime,
  2. $Value? target,
  3. List<$Value?> args
)

Create a new $Radius using Radius.elliptical from args

Implementation

static $Value? $elliptical(
    Runtime runtime, $Value? target, List<$Value?> args) {
  return $Radius.wrap(Radius.elliptical(args[0]!.$value, args[1]!.$value));
}