home_state.dart 261 Bytes
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);
}