17 lines
395 B
Dart
Executable File
17 lines
395 B
Dart
Executable File
import 'package:get/get.dart';
|
|
import 'package:star_lock/main/lockDetail/videoLog/videoLog/videoLog_entity.dart';
|
|
|
|
class VideoLogState {
|
|
var isNavLocal = false.obs;
|
|
var localList = [];
|
|
var getLockId = 0.obs;
|
|
var videoLogList = <CloudStorageData>[].obs;
|
|
|
|
VideoLogState() {
|
|
Map map = Get.arguments;
|
|
if (map['lockId'] != null) {
|
|
getLockId.value = map['lockId'];
|
|
}
|
|
}
|
|
}
|