toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final author = this.author;
final blog = this.blog;
final content = this.content;
final id = this.id;
final inReplyTo = this.inReplyTo;
final kind = this.kind;
final post = this.post;
final published = this.published;
final selfLink = this.selfLink;
final status = this.status;
final updated = this.updated;
return {
'author': ?author,
'blog': ?blog,
'content': ?content,
'id': ?id,
'inReplyTo': ?inReplyTo,
'kind': ?kind,
'post': ?post,
'published': ?published,
'selfLink': ?selfLink,
'status': ?status,
'updated': ?updated,
};
}