cb38bc90
liangchengyou
feat:视频跟读逻辑处理
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
part of 'repeat_after_content_bloc.dart';
@immutable
abstract class RepeatAfterContentState {}
class RepeatAfterContentInitial extends RepeatAfterContentState {}
class VideoPlayChangeState extends RepeatAfterContentState {}
class VoiceRecordChangeState extends RepeatAfterContentState {}
class VoiceRecordStateChange extends RepeatAfterContentState {}
class RequestDataState extends RepeatAfterContentState {}
class XSVoiceTestState extends RepeatAfterContentState {}
|