EmailAttachment.fromMap constructor
Implementation
factory EmailAttachment.fromMap(Map<String, dynamic> json) => EmailAttachment(
content: json["content"],
filename: json["filename"],
type: json["type"],
disposition: json["disposition"],
contentId: json["contentId"],
);