toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final databaseId = this.databaseId;
  final explainOptions = this.explainOptions;
  final gqlQuery = this.gqlQuery;
  final partitionId = this.partitionId;
  final propertyMask = this.propertyMask;
  final query = this.query;
  final readOptions = this.readOptions;
  return {
    'databaseId': ?databaseId,
    'explainOptions': ?explainOptions,
    'gqlQuery': ?gqlQuery,
    'partitionId': ?partitionId,
    'propertyMask': ?propertyMask,
    'query': ?query,
    'readOptions': ?readOptions,
  };
}