15 lines
352 B
Dart
Raw Normal View History

import 'package:get/get.dart';
import 'package:star_lock/main/lockDetail/messageWarn/lockUser/lockUser_entity.dart';
class AddFamilyState {
var getLockId = 0.obs;
var lockUserKeys = LockUserListKeys().obs;
AddFamilyState() {
Map map = Get.arguments;
if (map['getLockId'] != null) {
getLockId.value = map['getLockId'];
}
}
}