withDefault static method
Implementation
static DefaultedRepeatableOption<String> withDefault(
String name, {
required List<String> defaultValue,
RegExp? regex,
String? short,
String? description,
bool hidden = false,
}) => _DefaultedRepeatableStringOption(
name,
defaultValue: defaultValue,
regex: regex,
short: short,
description: description,
hidden: hidden,
);