optionValueEmpty property

OptionValueEmpty? optionValueEmpty

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;
}