toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    'from': from,
    'cc': cc,
    'bcc': bcc,
    'to': to,
    'reply_to': reply_to,
    'subject': subject,
    'text': text,
    'html': html
  };
}