clean up context locators

This commit is contained in:
Christien Rioux 2024-06-15 23:29:15 -04:00
parent 751022e743
commit 2ccad50f9a
31 changed files with 603 additions and 542 deletions

View file

@ -1,3 +1,4 @@
import 'package:equatable/equatable.dart';
import 'package:meta/meta.dart';
import 'unlocked_account_info.dart';
@ -10,7 +11,7 @@ enum AccountInfoStatus {
}
@immutable
class AccountInfo {
class AccountInfo extends Equatable {
const AccountInfo({
required this.status,
required this.active,
@ -20,4 +21,7 @@ class AccountInfo {
final AccountInfoStatus status;
final bool active;
final UnlockedAccountInfo? unlockedAccountInfo;
@override
List<Object?> get props => [status, active, unlockedAccountInfo];
}