optionValueInteger property

OptionValueInteger? optionValueInteger

Represents an integer option

Implementation

OptionValueInteger? get optionValueInteger {
  if (this is OptionValueInteger) {
    return this as OptionValueInteger;
  }
  return null;
}