toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final body = this.body;
final bodyFormat = this.bodyFormat;
final customized = this.customized;
final replyTo = this.replyTo;
final senderDisplayName = this.senderDisplayName;
final senderLocalPart = this.senderLocalPart;
final subject = this.subject;
return {
'body': ?body,
'bodyFormat': ?bodyFormat,
'customized': ?customized,
'replyTo': ?replyTo,
'senderDisplayName': ?senderDisplayName,
'senderLocalPart': ?senderLocalPart,
'subject': ?subject,
};
}