$prepareData static method

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

Wrapper for the CountryCoder.prepareData method

Implementation

static $Value? $prepareData(
  Runtime runtime,
  $Value? target,
  List<$Value?> args,
) {
  final value = CountryCoder.prepareData(args[0]!.$value);
  return $List.view(value, (e) => $Object(e));
}