toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'to'] = this.to;
    json[r'cc'] = this.cc;
    json[r'bcc'] = this.bcc;
  return json;
}