withDefault static method
Implementation
static DefaultedAccessorOption<String> withDefault(
String name, {
required String defaultValue,
RegExp? regex,
String? description,
}) => _DefaultedAccessorStringOption(
name,
defaultValue: defaultValue,
regex: regex,
description: description,
);