toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final booleanValue = this.booleanValue;
final doubleArray = this.doubleArray;
final doubleValue = this.doubleValue;
final intArray = this.intArray;
final intValue = this.intValue;
final protoValue = this.protoValue;
final stringArray = this.stringArray;
final stringValue = this.stringValue;
return {
'booleanValue': ?booleanValue,
'doubleArray': ?doubleArray,
'doubleValue': ?doubleValue,
'intArray': ?intArray,
'intValue': ?intValue,
'protoValue': ?protoValue,
'stringArray': ?stringArray,
'stringValue': ?stringValue,
};
}