21 lines
553 B
Dart
Executable File
21 lines
553 B
Dart
Executable File
import 'package:get/get.dart';
|
|
import 'package:star_lock/main/lockDetail/videoLog/videoLog/videoLog_entity.dart';
|
|
import 'package:video_player/video_player.dart';
|
|
|
|
class VideoLogDetailState {
|
|
var recordData = RecordListData().obs;
|
|
late VideoPlayerController videoController;
|
|
var videoLogList = [].obs;
|
|
|
|
VideoLogDetailState() {
|
|
Map map = Get.arguments;
|
|
if (map['recordData'] != null) {
|
|
recordData.value = map['recordData'];
|
|
}
|
|
|
|
if (map['videoDataList'] != null) {
|
|
videoLogList.value = map['videoDataList'];
|
|
}
|
|
}
|
|
}
|