optionValueInteger property
Represents an integer option
Implementation
OptionValueInteger? get optionValueInteger {
if (this is OptionValueInteger) {
return this as OptionValueInteger;
}
return null;
}
Represents an integer option
OptionValueInteger? get optionValueInteger {
if (this is OptionValueInteger) {
return this as OptionValueInteger;
}
return null;
}