toJson method

Map<String, dynamic> toJson()

Implementation

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