BluetoothBarrier.connecting constructor

BluetoothBarrier.connecting({
  1. required String barrierLabel,
  2. required int? deviceType,
})

Implementation

BluetoothBarrier.connecting({
  required this.barrierLabel,
  required this.deviceType,
}) : super(
        barrierEventType: _Param.bluetoothBarrierReceiverAction,
        barrierType: _Param.bluetoothConnectingBarrier,
        barrierLabel: barrierLabel,
      ) {
  bluetoothStatus = null;
}