toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (arrayValue != null) 'arrayValue': arrayValue!,
      if (booleanValue != null) 'booleanValue': booleanValue!,
      if (bytesValue != null) 'bytesValue': bytesValue!,
      if (doubleValue != null) 'doubleValue': doubleValue!,
      if (geoPointValue != null) 'geoPointValue': geoPointValue!,
      if (integerValue != null) 'integerValue': integerValue!,
      if (mapValue != null) 'mapValue': mapValue!,
      if (nullValue != null) 'nullValue': nullValue!,
      if (referenceValue != null) 'referenceValue': referenceValue!,
      if (stringValue != null) 'stringValue': stringValue!,
      if (timestampValue != null) 'timestampValue': timestampValue!,
    };