toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (newTransaction != null) 'newTransaction': newTransaction!,
  if (readConsistency != null) 'readConsistency': readConsistency!,
  if (readTime != null) 'readTime': readTime!,
  if (transaction != null) 'transaction': transaction!,
};