user_event.dart 238 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 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); }