get Paged Users Live
abstract fun getPagedUsersLive(filter: String? = null, excludedUserIds: Set<String>? = null): LiveData<PagedList<User>>
Content copied to clipboard
Observe a live PagedList of users sorted alphabetically. You can filter the users.
Return
a Livedata of users
Parameters
filter
the filter. It will look into userId and displayName.
excluded User Ids
userId list which will be excluded from the result list.