toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final etag = this.etag;
final id = this.id;
final kind = this.kind;
final selfLink = this.selfLink;
final title = this.title;
final updated = this.updated;
return {
'etag': ?etag,
'id': ?id,
'kind': ?kind,
'selfLink': ?selfLink,
'title': ?title,
'updated': ?updated,
};
}