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