AppFlowy/app_flowy/lib/welcome/domain/auth_state.dart
2021-06-19 23:41:19 +08:00

9 lines
271 B
Dart

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;
}