Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created January 25, 2021 04:15
Show Gist options
  • Save marcossevilla/41a14e2e423c21c8fce9d7b3c04c5013 to your computer and use it in GitHub Desktop.
Save marcossevilla/41a14e2e423c21c8fce9d7b3c04c5013 to your computer and use it in GitHub Desktop.
abstract class UserState { }
class UserNotLogged extends UserState { }
class UserLogged extends UserState {
UserLogged({@required this.user});
final User user;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment