| 123456789101112 | part of 'welcome_bloc.dart';@freezedabstract class WelcomeState implements _$WelcomeState {  const factory WelcomeState({    required AuthState auth,  }) = _WelcomeState;  factory WelcomeState.initial() => const WelcomeState(        auth: AuthState.initial(),      );}
 |