welcome_state.dart 280 B

123456789101112
  1. part of 'welcome_bloc.dart';
  2. @freezed
  3. abstract class WelcomeState implements _$WelcomeState {
  4. const factory WelcomeState({
  5. required AuthState auth,
  6. }) = _WelcomeState;
  7. factory WelcomeState.initial() => const WelcomeState(
  8. auth: AuthState.initial(),
  9. );
  10. }