toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final blogId = this.blogId;
final hasEditAccess = this.hasEditAccess;
final kind = this.kind;
final postId = this.postId;
final userId = this.userId;
return {
'blogId': ?blogId,
'hasEditAccess': ?hasEditAccess,
'kind': ?kind,
'postId': ?postId,
'userId': ?userId,
};
}