toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final arrayValue = this.arrayValue;
  final blobValue = this.blobValue;
  final booleanValue = this.booleanValue;
  final doubleValue = this.doubleValue;
  final entityValue = this.entityValue;
  final excludeFromIndexes = this.excludeFromIndexes;
  final geoPointValue = this.geoPointValue;
  final integerValue = this.integerValue;
  final keyValue = this.keyValue;
  final meaning = this.meaning;
  final nullValue = this.nullValue;
  final stringValue = this.stringValue;
  final timestampValue = this.timestampValue;
  return {
    'arrayValue': ?arrayValue,
    'blobValue': ?blobValue,
    'booleanValue': ?booleanValue,
    'doubleValue': ?doubleValue,
    'entityValue': ?entityValue,
    'excludeFromIndexes': ?excludeFromIndexes,
    'geoPointValue': ?geoPointValue,
    'integerValue': ?integerValue,
    'keyValue': ?keyValue,
    'meaning': ?meaning,
    'nullValue': ?nullValue,
    'stringValue': ?stringValue,
    'timestampValue': ?timestampValue,
  };
}