toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final arrayValue = this.arrayValue;
final booleanValue = this.booleanValue;
final bytesValue = this.bytesValue;
final doubleValue = this.doubleValue;
final fieldReferenceValue = this.fieldReferenceValue;
final functionValue = this.functionValue;
final geoPointValue = this.geoPointValue;
final integerValue = this.integerValue;
final mapValue = this.mapValue;
final nullValue = this.nullValue;
final pipelineValue = this.pipelineValue;
final referenceValue = this.referenceValue;
final stringValue = this.stringValue;
final timestampValue = this.timestampValue;
return {
'arrayValue': ?arrayValue,
'booleanValue': ?booleanValue,
'bytesValue': ?bytesValue,
'doubleValue': ?doubleValue,
'fieldReferenceValue': ?fieldReferenceValue,
'functionValue': ?functionValue,
'geoPointValue': ?geoPointValue,
'integerValue': ?integerValue,
'mapValue': ?mapValue,
'nullValue': ?nullValue,
'pipelineValue': ?pipelineValue,
'referenceValue': ?referenceValue,
'stringValue': ?stringValue,
'timestampValue': ?timestampValue,
};
}