$of static method

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

Wrapper for LinkedHashMap.of

Implementation

static $Value? $of(Runtime runtime, $Value? target, List<$Value?> args) {
  return $LinkedHashMap.wrap(LinkedHashMap.of((args[0] as $Map).$value));
}