toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final etag = this.etag;
final kind = this.kind;
final nextPageToken = this.nextPageToken;
final tables = this.tables;
final totalItems = this.totalItems;
return {
'etag': ?etag,
'kind': ?kind,
'nextPageToken': ?nextPageToken,
'tables': ?tables,
'totalItems': ?totalItems,
};
}