AppFlowy/app_flowy/lib/welcome/domain/auth_state.dart

9 lines
271 B
Dart
Raw Normal View History

2021-06-19 15:41:19 +00:00
import 'package:freezed_annotation/freezed_annotation.dart';
part 'auth_state.freezed.dart';
@freezed
abstract class AuthState with _$AuthState {
const factory AuthState.authenticated() = Authenticated;
const factory AuthState.unauthenticated() = Unauthenticated;
}