toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endCursor = this.endCursor;
  final entityResultType = this.entityResultType;
  final entityResults = this.entityResults;
  final moreResults = this.moreResults;
  final readTime = this.readTime;
  final skippedCursor = this.skippedCursor;
  final skippedResults = this.skippedResults;
  final snapshotVersion = this.snapshotVersion;
  return {
    'endCursor': ?endCursor,
    'entityResultType': ?entityResultType,
    'entityResults': ?entityResults,
    'moreResults': ?moreResults,
    'readTime': ?readTime,
    'skippedCursor': ?skippedCursor,
    'skippedResults': ?skippedResults,
    'snapshotVersion': ?snapshotVersion,
  };
}