Blame view

lib/pages/home/bloc/home_event.dart 312 Bytes
60e47f7c   liangchengyou   feat:课程选择功能
1
2
3
4
  part of 'home_bloc.dart';
  
  @immutable
  abstract class HomeEvent {}
993c1a04   liangchengyou   feat:添加数据模型
5
6
  
  class RequestDataEvent extends HomeEvent {}
3c1d5c64   liangchengyou   feat:练习功能完成
7
8
9
10
11
12
13
  
  ///获取视频课程内容
  class RequestVideoLessonEvent extends HomeEvent {
    final String courseLessonId;
    final int courseType;
    RequestVideoLessonEvent(this.courseLessonId, this.courseType);
  }