import 'package:get/get.dart'; import '../../../lockMian/entity/lockInfoEntity.dart'; class RemoteUnlockingState{ var getKeyInfosData = KeyInfos().obs; var remoteEnable = 1.obs; RemoteUnlockingState() { getKeyInfosData.value = Get.arguments as KeyInfos; remoteEnable.value = getKeyInfosData.value.remoteEnable!; } }