We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff335a6 commit a1246eeCopy full SHA for a1246ee
lib/model/user.dart
@@ -35,7 +35,10 @@ mixin UserStore on PerAccountStoreBase, RealmStore {
35
/// Consider using [userDisplayName].
36
User? getUser(int userId);
37
38
- /// All known users in the realm.
+ /// All known users in the realm, including deactivated users.
39
+ ///
40
+ /// Before presenting these users in the UI, consider whether to exclude
41
+ /// users who are deactivated (see [User.isActive]) or muted ([isUserMuted]).
42
///
43
/// This may have a large number of elements, like tens of thousands.
44
/// Consider [getUser] or other alternatives to iterating through this.
0 commit comments