NiceUserList constructor

const NiceUserList({
  1. Key? key,
  2. required List<NiceUserInfo> users,
  3. void onUserTap(
    1. NiceUserInfo user
    )?,
  4. void onSelectionChanged(
    1. Set<String> selectedIds
    )?,
  5. bool selectable = false,
  6. bool showSearch = true,
  7. Set<String> selectedIds = const {},
})

Implementation

const NiceUserList({
  super.key,
  required this.users,
  this.onUserTap,
  this.onSelectionChanged,
  this.selectable = false,
  this.showSearch = true,
  this.selectedIds = const {},
});