toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolValue = this.boolValue;
final numberValue = this.numberValue;
final stringValue = this.stringValue;
return {
'boolValue': ?boolValue,
'numberValue': ?numberValue,
'stringValue': ?stringValue,
};
}