AmbientLightBarrier.below constructor

AmbientLightBarrier.below({
  1. required String barrierLabel,
  2. required double? maxLightIntensity,
})

Implementation

AmbientLightBarrier.below({
  required this.barrierLabel,
  required this.maxLightIntensity,
}) : super(
        barrierEventType: _Param.ambientLightBarrierReceiverAction,
        barrierType: _Param.ambientLightBelowBarrier,
        barrierLabel: barrierLabel,
      ) {
  minLightIntensity = null;
}