toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final firstValue = this.firstValue;
final predefinedItem = this.predefinedItem;
final secondValue = this.secondValue;
return {
'firstValue': ?firstValue,
'predefinedItem': ?predefinedItem,
'secondValue': ?secondValue,
};
}