VALUES constant

List<ParameterKind> const VALUES

A list containing all of the enum values that are defined.

Implementation

static const List<ParameterKind> VALUES = <ParameterKind>[
  OPTIONAL_NAMED,
  OPTIONAL_POSITIONAL,
  REQUIRED_NAMED,
  REQUIRED_POSITIONAL
];