optionValueBoolean property

OptionValueBoolean? optionValueBoolean

Represents a boolean option

Implementation

OptionValueBoolean? get optionValueBoolean {
  if (this is OptionValueBoolean) {
    return this as OptionValueBoolean;
  }
  return null;
}