From 6e0b1775f05ca5ef567a9d066273f4e0362775f0 Mon Sep 17 00:00:00 2001 From: Faris Armoush Date: Sun, 27 Apr 2025 10:55:18 +0300 Subject: [PATCH] fix: reorder constructor parameters for consistency in FlushMountedPresenceSensorControlView --- .../views/flush_mounted_presence_sensor_control_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/device_managment/flush_mounted_presence_sensor/views/flush_mounted_presence_sensor_control_view.dart b/lib/pages/device_managment/flush_mounted_presence_sensor/views/flush_mounted_presence_sensor_control_view.dart index 0360b642..c521bd3b 100644 --- a/lib/pages/device_managment/flush_mounted_presence_sensor/views/flush_mounted_presence_sensor_control_view.dart +++ b/lib/pages/device_managment/flush_mounted_presence_sensor/views/flush_mounted_presence_sensor_control_view.dart @@ -15,7 +15,7 @@ import 'package:syncrow_web/utils/helpers/responsice_layout_helper/responsive_la class FlushMountedPresenceSensorControlView extends StatelessWidget with HelperResponsiveLayout { - const FlushMountedPresenceSensorControlView({super.key, required this.device}); + const FlushMountedPresenceSensorControlView({required this.device, super.key}); final AllDevicesModel device;