Blame view

lib/common/blocs/cachebloc/cache_event.dart 231 Bytes
fcc3a982   liangchengyou   feat:全局缓存bloc
1
2
3
4
5
6
7
8
9
10
11
  part of 'cache_bloc.dart';
  
  @immutable
  abstract class CacheEvent {}
  
  class UserInfoChangeEvent extends CacheEvent{
    UserEntity? userEntity;
    UserInfoChangeEvent(this.userEntity);
  }
  
  class UserInfoClearEvent extends CacheEvent {}