Blame view

lib/pages/home/bloc/home_state.dart 261 Bytes
60e47f7c   liangchengyou   feat:课程选择功能
1
2
3
4
5
6
  part of 'home_bloc.dart';
  
  @immutable
  abstract class HomeState {}
  
  class HomeInitial extends HomeState {}
13e6d11d   liangchengyou   feat:首页课程模块接口
7
8
  
  class HomeDataLoadState extends HomeState {}
3c1d5c64   liangchengyou   feat:练习功能完成
9
10
11
12
13
  
  class RequestVideoLessonState extends HomeState {
    final int type;
    RequestVideoLessonState(this.type);
  }