BarcodeWifi constructor

BarcodeWifi({
  1. required String rawValue,
  2. String? ssid,
  3. String? password,
  4. WifiEncryptionType? encryptionType,
})

Implementation

BarcodeWifi({
  required String rawValue,
  this.ssid,
  this.password,
  this.encryptionType,
}) : super(valueType: BarcodeValueType.wifi, rawValue: rawValue);