12 lines
425 B
Dart
Raw Normal View History

import 'package:flowy_sdk/protobuf/flowy-user/protobuf.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-09-04 16:53:58 +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
}