toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final body = this.body;
final format = this.format;
final from = this.from;
final fromDisplayName = this.fromDisplayName;
final replyTo = this.replyTo;
final subject = this.subject;
return {
'body': ?body,
'format': ?format,
'from': ?from,
'fromDisplayName': ?fromDisplayName,
'replyTo': ?replyTo,
'subject': ?subject,
};
}