NotifyEmailType constructor

NotifyEmailType({
  1. required String subject,
  2. String? htmlBody,
  3. String? textBody,
})

Implementation

NotifyEmailType({
  required this.subject,
  this.htmlBody,
  this.textBody,
});