import 'package:freezed_annotation/freezed_annotation.dart'; part 'auth_state.freezed.dart'; /// 登录状态。 @freezed class AuthState with _$AuthState { const factory AuthState({ @Default(false) bool loggedIn, @Default(false) bool restoring, String? username, String? error, }) = _AuthState; }