toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolArrayValue = this.boolArrayValue;
final boolValue = this.boolValue;
final bytesValue = this.bytesValue;
final doubleArrayValue = this.doubleArrayValue;
final doubleValue = this.doubleValue;
final int64ArrayValue = this.int64ArrayValue;
final int64Value = this.int64Value;
final metadata = this.metadata;
final stringArrayValue = this.stringArrayValue;
final stringValue = this.stringValue;
final structValue = this.structValue;
return {
'boolArrayValue': ?boolArrayValue,
'boolValue': ?boolValue,
'bytesValue': ?bytesValue,
'doubleArrayValue': ?doubleArrayValue,
'doubleValue': ?doubleValue,
'int64ArrayValue': ?int64ArrayValue,
'int64Value': ?int64Value,
'metadata': ?metadata,
'stringArrayValue': ?stringArrayValue,
'stringValue': ?stringValue,
'structValue': ?structValue,
};
}