toJson method

Map<String, dynamic> toJson()

Implementation

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