2023-09-07 18:36:16 +08:00

13 lines
334 B
Dart

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!;
}
}