mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-05-28 10:42:24 -04:00
debugging work
This commit is contained in:
parent
739df7c427
commit
d6b1c20906
71 changed files with 4155 additions and 3616 deletions
|
@ -13,7 +13,7 @@ enum AccountInfoStatus {
|
|||
}
|
||||
|
||||
@immutable
|
||||
class AccountInfo extends Equatable {
|
||||
class AccountInfo extends Equatable implements ToDebugMap {
|
||||
const AccountInfo({
|
||||
required this.status,
|
||||
required this.localAccount,
|
||||
|
@ -30,6 +30,13 @@ class AccountInfo extends Equatable {
|
|||
localAccount,
|
||||
userLogin,
|
||||
];
|
||||
|
||||
@override
|
||||
Map<String, dynamic> toDebugMap() => {
|
||||
'status': status,
|
||||
'localAccount': localAccount,
|
||||
'userLogin': userLogin,
|
||||
};
|
||||
}
|
||||
|
||||
extension AccountInfoExt on AccountInfo {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue