13 lines
334 B
Dart
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!;
|
|
}
|
|
} |