12 lines
505 B
Dart
Raw Normal View History

2021-12-05 14:04:25 +08:00
import 'package:flowy_sdk/protobuf/flowy-user-infra/protobuf.dart' show UserProfile;
import 'package:flowy_sdk/protobuf/flowy-user/errors.pb.dart';
2021-06-19 23:41:19 +08:00
import 'package:freezed_annotation/freezed_annotation.dart';
part 'auth_state.freezed.dart';
@freezed
abstract class AuthState with _$AuthState {
2021-12-05 14:04:25 +08:00
const factory AuthState.authenticated(UserProfile userProfile) = Authenticated;
2021-07-12 23:27:58 +08:00
const factory AuthState.unauthenticated(UserError error) = Unauthenticated;
const factory AuthState.initial() = _Initial;
2021-06-19 23:41:19 +08:00
}