BarcodeEmail constructor

BarcodeEmail({
  1. required String rawValue,
  2. List<String> recipients = const [],
  3. List<String> cc = const [],
  4. List<String> bcc = const [],
  5. String? body,
  6. String? subject,
})

Implementation

BarcodeEmail({
  required String rawValue,
  this.recipients = const [],
  this.cc = const [],
  this.bcc = const [],
  this.body,
  this.subject,
}) : super(valueType: BarcodeValueType.email, rawValue: rawValue);