toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cacheHit = this.cacheHit;
  final errors = this.errors;
  final etag = this.etag;
  final jobComplete = this.jobComplete;
  final jobReference = this.jobReference;
  final kind = this.kind;
  final numDmlAffectedRows = this.numDmlAffectedRows;
  final pageToken = this.pageToken;
  final rows = this.rows;
  final schema = this.schema;
  final totalBytesProcessed = this.totalBytesProcessed;
  final totalRows = this.totalRows;
  return {
    'cacheHit': ?cacheHit,
    'errors': ?errors,
    'etag': ?etag,
    'jobComplete': ?jobComplete,
    'jobReference': ?jobReference,
    'kind': ?kind,
    'numDmlAffectedRows': ?numDmlAffectedRows,
    'pageToken': ?pageToken,
    'rows': ?rows,
    'schema': ?schema,
    'totalBytesProcessed': ?totalBytesProcessed,
    'totalRows': ?totalRows,
  };
}