section_state.dart
396 Bytes
part of 'section_bloc.dart';
@immutable
abstract class SectionState {}
class LessonInitial extends SectionState {}
class LessonDataLoadState extends SectionState {}
class RequestEnterClassState extends SectionState {
final String courseLessonId;
final int courseType;
RequestEnterClassState(this.courseLessonId, this.courseType);
}
class CurrentPageIndexState extends SectionState {}