ScreenBarrier.screenUnlock constructor

ScreenBarrier.screenUnlock({
  1. required String barrierLabel,
})

Implementation

ScreenBarrier.screenUnlock({required this.barrierLabel})
    : super(
        barrierEventType: _Param.screenBarrierReceiverAction,
        barrierType: _Param.screenUnlockBarrier,
        barrierLabel: barrierLabel,
      ) {
  screenStatus = null;
}