toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowCustomValues = this.allowCustomValues;
final multipleSelectOptions = this.multipleSelectOptions;
final valueSeparator = this.valueSeparator;
return {
'allowCustomValues': ?allowCustomValues,
'multipleSelectOptions': ?multipleSelectOptions,
'valueSeparator': ?valueSeparator,
};
}