UsersLoaded constructor

const UsersLoaded({
  1. required List<User> users,
  2. bool hasMore = true,
  3. Set<String> selectedUsers = const {},
  4. bool isLoadingMore = false,
  5. String? searchKeyword,
})

Implementation

const UsersLoaded({
  required this.users,
  this.hasMore = true,
  this.selectedUsers = const {},
  this.isLoadingMore = false,
  this.searchKeyword,
});