16 lines
301 B
Dart
Raw Normal View History

import 'package:get/get.dart';
import '../lockUserManageList/keyListByUserEntity.dart';
class OwnedKeyListState{
var getUidStr = 0;
var dataList = <KeyListItem>[].obs;
OwnedKeyListState(){
Map map = Get.arguments;
if ((map["uid"] != null)) {
getUidStr = map["uid"];
}
}
}