Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created January 25, 2021 04:02
Show Gist options
  • Save marcossevilla/c2eb39344f4c132a75ffa60e68aa6b4a to your computer and use it in GitHub Desktop.
Save marcossevilla/c2eb39344f4c132a75ffa60e68aa6b4a to your computer and use it in GitHub Desktop.
import 'package:freezed_annotation/freezed_annotation.dart';
part 'user_state.freezed.dart';
@freezed
abstract class UserState with _$UserState {
const factory UserState(User user) = UserLogged;
const factory UserState.notLogged() = UserNotLogged;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment