$withRadius static method

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

Wrapper for the DistanceVincenty.withRadius constructor

Implementation

static $Value? $withRadius(
  Runtime runtime,
  $Value? thisValue,
  List<$Value?> args,
) {
  return $DistanceVincenty.wrap(
    DistanceVincenty.withRadius(
      args[0]!.$value,
      roundResult: args[1]?.$value ?? true,
    ),
  );
}