UserPickerItem constructor

const UserPickerItem({
  1. Key? key,
  2. required SelectWrapper<User> wrapper,
  3. bool showCheckBox = true,
  4. bool showCharacter = false,
  5. bool showDepartment = true,
})

Implementation

const UserPickerItem({
  super.key,
  required this.wrapper,
  this.showCheckBox = true,
  this.showCharacter = false,
  this.showDepartment = true,
});