toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attachments = this.attachments;
final body = this.body;
final createTime = this.createTime;
final localizationTime = this.localizationTime;
return {
'attachments': ?attachments,
'body': ?body,
'createTime': ?createTime,
'localizationTime': ?localizationTime,
};
}