Blame view

lib/pages/user/bloc/user_event.dart 348 Bytes
22b7d4da   Key   feat: user, api path
1
2
  part of 'user_bloc.dart';
  
c61b3c1a   Key   feat: toast_util....
3
  sealed class UserEvent {}
c95453ce   Key   feat: User界面完善
4
5
6
7
  
  class UserStarted extends UserEvent {}
  
  class UserLogout extends UserEvent {}
c9df43c8   Key   feat: 修改个人信息、接口
8
9
10
11
12
13
  
  class UserUpdate extends UserEvent {
    final ModifyUserInformationType type;
  
    UserUpdate(this.type);
  }
01e73e19   Key   暂时关闭修改个人信息
14
15
16
17
18
19
  
  class UserUIUpdate extends UserEvent {
    final ModifyUserInformationType type;
  
    UserUIUpdate(this.type);
  }