type property

OptionType get type

The type that value will contain and that is needed for setting this option.

Implementation

OptionType get type => OptionType.fromJS(_wrapped.type);
set type (OptionType v)

Implementation

set type(OptionType v) {
  _wrapped.type = v.toJS;
}