16 lines
301 B
Dart
Executable File
16 lines
301 B
Dart
Executable File
|
|
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"];
|
|
}
|
|
}
|
|
} |