18 lines
488 B
Dart
18 lines
488 B
Dart
import '../../kt_model/kt_video_detail_bean.dart';
|
|
import '../../kt_widgets/kt_status_widget.dart';
|
|
|
|
class VideoPlayState {
|
|
String imageUrl = '';
|
|
int shortPlayId = -1;
|
|
num videoId = -1;
|
|
int? activityId;
|
|
bool isFromDiscover = false;
|
|
VideoDetailBean? video;
|
|
List<Episode> episodeList = [];
|
|
KtLoadStatusType loadStatus = KtLoadStatusType.loading;
|
|
|
|
int currentVideoIndex = 0;
|
|
double currentSpeed = 1.0;
|
|
final List<double> speedList = [0.75, 1.0, 1.25, 1.5, 2.0, 3.0];
|
|
}
|