$withRadius static method
Wrapper for the Distance.withRadius constructor
Implementation
static $Value? $withRadius(
Runtime runtime,
$Value? thisValue,
List<$Value?> args,
) {
return $Distance.wrap(
Distance.withRadius(
args[0]!.$value,
roundResult: args[1]?.$value ?? true,
calculator: args[2]?.$value ?? const Vincenty(),
),
);
}