Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created January 25, 2021 04:15
Show Gist options
  • Save marcossevilla/408594ab4440d7f5cf908cbeb5481922 to your computer and use it in GitHub Desktop.
Save marcossevilla/408594ab4440d7f5cf908cbeb5481922 to your computer and use it in GitHub Desktop.
class UserStateNotifier extends StateNotifier<UserState> {
// usamos super para crear nuestro estado inicial,
// igual que en Bloc
UserStateNotifier() : super(UserNotLogged());
// cambiamos el estado asignando uno nuevo
void logIn(User user) => state = UserLogged(user: user);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment