part of 'home_bloc.dart';
@immutable
abstract class HomeState {}
class HomeInitial extends HomeState {}
class HomeDataLoadState extends HomeState {}
class RequestVideoLessonState extends HomeState {
final int type;
RequestVideoLessonState(this.type);
}