optionValueEmpty property
Represents an unknown option or an option which has a default value
Implementation
OptionValueEmpty? get optionValueEmpty {
if (this is OptionValueEmpty) {
return this as OptionValueEmpty;
}
return null;
}
Represents an unknown option or an option which has a default value
OptionValueEmpty? get optionValueEmpty {
if (this is OptionValueEmpty) {
return this as OptionValueEmpty;
}
return null;
}