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