GroupsLoaded constructor

const GroupsLoaded({
  1. required List<Group> groups,
  2. bool hasMore = true,
  3. bool isLoadingMore = false,
  4. Set<String> selectedGroups = const {},
  5. String? searchKeyword,
})

Implementation

const GroupsLoaded({
  required this.groups,
  this.hasMore = true,
  this.isLoadingMore = false,
  this.selectedGroups = const {},
  this.searchKeyword,
});