toJson method

Map<String, dynamic> toJson()

Implementation

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