From 756457927c51337a3f57561b17e016878b3f0784 Mon Sep 17 00:00:00 2001 From: Faris Armoush Date: Sun, 27 Apr 2025 10:13:53 +0300 Subject: [PATCH] removed unnecessary `isBatch` flag from `FlushMountedPresenceSensorChangeValueEvent`. --- .../bloc/flush_mounted_presence_sensor_event.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/pages/device_managment/flush_mounted_presence_sensor/bloc/flush_mounted_presence_sensor_event.dart b/lib/pages/device_managment/flush_mounted_presence_sensor/bloc/flush_mounted_presence_sensor_event.dart index f70e7f3a..08a01615 100644 --- a/lib/pages/device_managment/flush_mounted_presence_sensor/bloc/flush_mounted_presence_sensor_event.dart +++ b/lib/pages/device_managment/flush_mounted_presence_sensor/bloc/flush_mounted_presence_sensor_event.dart @@ -24,11 +24,10 @@ class FlushMountedPresenceSensorChangeValueEvent extends FlushMountedPresenceSensorEvent { final int value; final String code; - final bool isBatchControl; + const FlushMountedPresenceSensorChangeValueEvent({ required this.value, required this.code, - this.isBatchControl = false, }); @override