SendEmailModel constructor

SendEmailModel({
  1. String? fromName,
  2. String? fromEmail,
  3. String? toName,
  4. String? toEmail,
  5. String? subject,
  6. String? body,
  7. int? msgstatus,
})

Implementation

SendEmailModel({
  this.fromName,
  this.fromEmail,
  this.toName,
  this.toEmail,
  this.subject,
  this.body,
  this.msgstatus,
});