ParameterKind constructor

ParameterKind(
  1. String name
)

Implementation

factory ParameterKind(String name) {
  switch (name) {
    case 'OPTIONAL_NAMED':
      return OPTIONAL_NAMED;
    case 'OPTIONAL_POSITIONAL':
      return OPTIONAL_POSITIONAL;
    case 'REQUIRED_NAMED':
      return REQUIRED_NAMED;
    case 'REQUIRED_POSITIONAL':
      return REQUIRED_POSITIONAL;
  }
  throw Exception('Illegal enum value: $name');
}