fix: reorder constructor parameters for consistency in FlushMountedPresenceSensorControlView

This commit is contained in:
Faris Armoush
2025-04-27 10:55:18 +03:00
parent 233fb2ee2c
commit 6e0b1775f0

View File

@ -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;