organized instances in bloc.

This commit is contained in:
Faris Armoush
2025-04-23 10:26:55 +03:00
parent 8c960bd5f1
commit 24130be665

View File

@ -17,10 +17,9 @@ part 'flush_mounted_presence_sensor_state.dart';
class FlushMountedPresenceSensorBloc
extends Bloc<FlushMountedPresenceSensorEvent, FlushMountedPresenceSensorState> {
final String deviceId;
late FlushMountedPresenceSensorModel deviceStatus;
final ControlDeviceService controlDeviceService;
late FlushMountedPresenceSensorModel deviceStatus;
FlushMountedPresenceSensorBloc({
required this.deviceId,
required this.controlDeviceService,