toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final columnHeaders = this.columnHeaders;
  final containsSampledData = this.containsSampledData;
  final id = this.id;
  final itemsPerPage = this.itemsPerPage;
  final kind = this.kind;
  final nextLink = this.nextLink;
  final previousLink = this.previousLink;
  final profileInfo = this.profileInfo;
  final query = this.query;
  final rows = this.rows;
  final sampleSize = this.sampleSize;
  final sampleSpace = this.sampleSpace;
  final selfLink = this.selfLink;
  final totalResults = this.totalResults;
  final totalsForAllResults = this.totalsForAllResults;
  return {
    'columnHeaders': ?columnHeaders,
    'containsSampledData': ?containsSampledData,
    'id': ?id,
    'itemsPerPage': ?itemsPerPage,
    'kind': ?kind,
    'nextLink': ?nextLink,
    'previousLink': ?previousLink,
    'profileInfo': ?profileInfo,
    'query': ?query,
    'rows': ?rows,
    'sampleSize': ?sampleSize,
    'sampleSpace': ?sampleSpace,
    'selfLink': ?selfLink,
    'totalResults': ?totalResults,
    'totalsForAllResults': ?totalsForAllResults,
  };
}