toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cacheHit = this.cacheHit;
  final creationTime = this.creationTime;
  final dmlStats = this.dmlStats;
  final endTime = this.endTime;
  final errors = this.errors;
  final jobComplete = this.jobComplete;
  final jobCreationReason = this.jobCreationReason;
  final jobReference = this.jobReference;
  final kind = this.kind;
  final location = this.location;
  final numDmlAffectedRows = this.numDmlAffectedRows;
  final pageToken = this.pageToken;
  final queryId = this.queryId;
  final rows = this.rows;
  final schema = this.schema;
  final sessionInfo = this.sessionInfo;
  final startTime = this.startTime;
  final totalBytesBilled = this.totalBytesBilled;
  final totalBytesProcessed = this.totalBytesProcessed;
  final totalRows = this.totalRows;
  final totalSlotMs = this.totalSlotMs;
  return {
    'cacheHit': ?cacheHit,
    'creationTime': ?creationTime,
    'dmlStats': ?dmlStats,
    'endTime': ?endTime,
    'errors': ?errors,
    'jobComplete': ?jobComplete,
    'jobCreationReason': ?jobCreationReason,
    'jobReference': ?jobReference,
    'kind': ?kind,
    'location': ?location,
    'numDmlAffectedRows': ?numDmlAffectedRows,
    'pageToken': ?pageToken,
    'queryId': ?queryId,
    'rows': ?rows,
    'schema': ?schema,
    'sessionInfo': ?sessionInfo,
    'startTime': ?startTime,
    'totalBytesBilled': ?totalBytesBilled,
    'totalBytesProcessed': ?totalBytesProcessed,
    'totalRows': ?totalRows,
    'totalSlotMs': ?totalSlotMs,
  };
}