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