toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final action = this.action;
final assigneeEmailAddress = this.assigneeEmailAddress;
final author = this.author;
final content = this.content;
final createdTime = this.createdTime;
final deleted = this.deleted;
final htmlContent = this.htmlContent;
final id = this.id;
final kind = this.kind;
final mentionedEmailAddresses = this.mentionedEmailAddresses;
final modifiedTime = this.modifiedTime;
return {
'action': ?action,
'assigneeEmailAddress': ?assigneeEmailAddress,
'author': ?author,
'content': ?content,
'createdTime': ?createdTime?.toUtc().toIso8601String(),
'deleted': ?deleted,
'htmlContent': ?htmlContent,
'id': ?id,
'kind': ?kind,
'mentionedEmailAddresses': ?mentionedEmailAddresses,
'modifiedTime': ?modifiedTime?.toUtc().toIso8601String(),
};
}