checkpoint

This commit is contained in:
Christien Rioux 2024-06-18 21:20:06 -04:00
parent 3edf2ebb46
commit c40f835ec5
25 changed files with 378 additions and 312 deletions

View file

@ -16,20 +16,17 @@ enum AccountInfoStatus {
class AccountInfo extends Equatable {
const AccountInfo({
required this.status,
required this.active,
required this.localAccount,
required this.userLogin,
});
final AccountInfoStatus status;
final bool active;
final LocalAccount localAccount;
final UserLogin? userLogin;
@override
List<Object?> get props => [
status,
active,
localAccount,
userLogin,
];