$values static method

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

Wrapper for the IconAlignment.values getter

Implementation

static $Value? $values(Runtime runtime, $Value? target, List<$Value?> args) {
  const value = IconAlignment.values;
  return $List.view(value, (e) => $IconAlignment.wrap(e));
}