SendEmailModel.fromMap constructor
Implementation
factory SendEmailModel.fromMap(Map<String, dynamic> json) => SendEmailModel(
fromName: json["fromName"],
fromEmail: json["fromEmail"],
toName: json["toName"],
toEmail: json["toEmail"],
subject: json["subject"],
body: json["body"],
msgstatus: json["msgstatus"],
);