BarcodeWhatsapp constructor

BarcodeWhatsapp({
  1. required String rawValue,
  2. required String phoneNumber,
  3. String? message,
})

Implementation

BarcodeWhatsapp({
  required String rawValue,
  required this.phoneNumber,
  this.message,
}) : super(valueType: BarcodeValueType.whatsapp, rawValue: rawValue);