RegistryPositional typedef

RegistryPositional = ({List<String>? choices, String? defaultValue, String? description, String name, String? pattern, bool? repeatable, bool required, int? times})

Implementation

typedef RegistryPositional = ({
  String name,
  bool required,
  String? description,
  List<String>? choices,
  String? defaultValue,
  bool? repeatable,
  int? times,
  String? pattern,
});