toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deferred = this.deferred;
  final found = this.found;
  final missing = this.missing;
  final readTime = this.readTime;
  final transaction = this.transaction;
  return {
    'deferred': ?deferred,
    'found': ?found,
    'missing': ?missing,
    'readTime': ?readTime,
    'transaction': ?transaction,
  };
}