💄 Better sidebar navigation

This commit is contained in:
2024-08-07 18:24:16 +08:00
parent 54dee9702b
commit 8009f4ca9b
5 changed files with 229 additions and 181 deletions

View File

@@ -52,6 +52,17 @@ class Realm {
'is_community': isCommunity,
'account_id': accountId,
};
@override
bool operator ==(Object other) {
if (other is Realm) {
return other.id == id;
}
return false;
}
@override
int get hashCode => id;
}
class RealmMember {