$from static method

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

Wrapper for LinkedHashMap.from

Implementation

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