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

12 lines
425 B
Dart
Raw Normal View History

import 'package:flowy_sdk/protobuf/flowy-user/protobuf.dart';
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 {
2021-09-04 08:53:58 +00:00
const factory AuthState.authenticated(UserProfile userProfile) =
Authenticated;
2021-07-12 15:27:58 +00:00
const factory AuthState.unauthenticated(UserError error) = Unauthenticated;
const factory AuthState.initial() = _Initial;
2021-06-19 15:41:19 +00:00
}