fromJson method

void fromJson(
  1. Map<String, dynamic> json
)

Implementation

void fromJson(Map<String, dynamic> json) {
  from = json['from'];
  cc = json['cc'];
  bcc = json['bcc'];
  to = json['to'];
  reply_to = json['reply_to'];
  subject = json['subject'];
  text = json['text'];
  html = json['html'];
}