$expandSynonyms static method

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

Wrapper for the LogicalKeyboardKey.expandSynonyms method

Implementation

static $Value? $expandSynonyms(
  Runtime runtime,
  $Value? target,
  List<$Value?> args,
) {
  final value = LogicalKeyboardKey.expandSynonyms(
    (args[0]!.$reified as Set).cast(),
  );
  return $Set.wrap(value);
}