2023-09-28 18:05:23 +08:00
|
|
|
|
|
|
|
|
import 'package:amap_flutter_location/amap_flutter_location.dart';
|
|
|
|
|
import 'package:amap_flutter_map/amap_flutter_map.dart';
|
|
|
|
|
import 'package:amap_flutter_base/amap_flutter_base.dart';
|
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
import 'package:permission_handler/permission_handler.dart';
|
|
|
|
|
|
|
|
|
|
class LockAddressGaoDeState{
|
|
|
|
|
|
2023-10-12 11:24:41 +08:00
|
|
|
var pwdTimestamp= 0.obs;
|
2023-12-13 11:54:34 +08:00
|
|
|
var lockInfo = {};
|
|
|
|
|
var featureValue = '';
|
|
|
|
|
var featureSettingValue = '';
|
|
|
|
|
var featureSettingParams = [];
|
|
|
|
|
|
2023-10-12 11:24:41 +08:00
|
|
|
LockAddressGaoDeState() {
|
|
|
|
|
Map map = Get.arguments;
|
|
|
|
|
pwdTimestamp.value = map["pwdTimestamp"];
|
2023-12-13 11:54:34 +08:00
|
|
|
lockInfo = map["lockInfo"];
|
|
|
|
|
featureValue = map["featureValue"];
|
|
|
|
|
featureSettingValue = map["featureSettingValue"];
|
|
|
|
|
featureSettingParams = map["featureSettingParams"];
|
2023-10-12 11:24:41 +08:00
|
|
|
}
|
2023-09-28 18:05:23 +08:00
|
|
|
}
|