toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customMetaData = this.customMetaData;
final description = this.description;
final id = this.id;
final kind = this.kind;
final locale = this.locale;
final name = this.name;
final pages = this.pages;
final posts = this.posts;
final published = this.published;
final selfLink = this.selfLink;
final status = this.status;
final updated = this.updated;
final url = this.url;
return {
'customMetaData': ?customMetaData,
'description': ?description,
'id': ?id,
'kind': ?kind,
'locale': ?locale,
'name': ?name,
'pages': ?pages,
'posts': ?posts,
'published': ?published,
'selfLink': ?selfLink,
'status': ?status,
'updated': ?updated,
'url': ?url,
};
}