toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final explanation = this.explanation;
  final pruningStats = this.pruningStats;
  final staleness = this.staleness;
  final tableReference = this.tableReference;
  final tableType = this.tableType;
  final unusedReason = this.unusedReason;
  return {
    'explanation': ?explanation,
    'pruningStats': ?pruningStats,
    'staleness': ?staleness,
    'tableReference': ?tableReference,
    'tableType': ?tableType,
    'unusedReason': ?unusedReason,
  };
}