user_event.dart 348 Bytes
part of 'user_bloc.dart';

sealed class UserEvent {}

class UserStarted extends UserEvent {}

class UserLogout extends UserEvent {}

class UserUpdate extends UserEvent {
  final ModifyUserInformationType type;

  UserUpdate(this.type);
}

class UserUIUpdate extends UserEvent {
  final ModifyUserInformationType type;

  UserUIUpdate(this.type);
}