RegistryOption typedef
RegistryOption = ({List<String> ? choices, String? defaultValue, String? description, bool hidden, num? max, num? min, String name, List<String> ? pairedOptions, String? pattern, bool? repeatable, bool required, String? short, num? step, bool? unique, String valueType})
Implementation
typedef RegistryOption = ({
String name,
String? short,
bool required,
bool hidden,
String? description,
String valueType,
bool? repeatable,
bool? unique,
List<String>? choices,
String? defaultValue,
String? pattern,
num? min,
num? max,
num? step,
List<String>? pairedOptions,
});