toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolValue = this.boolValue;
final intValue = this.intValue;
final messageValue = this.messageValue;
final multiIntValue = this.multiIntValue;
final multiMessageValue = this.multiMessageValue;
final multiValue = this.multiValue;
final name = this.name;
final value = this.value;
return {
'boolValue': ?boolValue,
'intValue': ?intValue,
'messageValue': ?messageValue,
'multiIntValue': ?multiIntValue,
'multiMessageValue': ?multiMessageValue,
'multiValue': ?multiValue,
'name': ?name,
'value': ?value,
};
}