mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
13 lines
288 B
Dart
13 lines
288 B
Dart
part of 'welcome_bloc.dart';
|
|
|
|
@freezed
|
|
abstract class WelcomeState implements _$WelcomeState {
|
|
const factory WelcomeState({
|
|
required AuthState auth,
|
|
}) = _WelcomeState;
|
|
|
|
factory WelcomeState.initial() => const WelcomeState(
|
|
auth: AuthState.unauthenticated(),
|
|
);
|
|
}
|