CustomListTile constructor

const CustomListTile({
  1. Key? key,
  2. Function? onTap,
  3. Function? onTrailingPressed,
  4. bool asSelectionTile = false,
  5. GroupContactsModel? item,
  6. bool selectSingle = false,
  7. ValueChanged<List<GroupContactsModel?>>? selectedList,
})

Implementation

const CustomListTile({
  Key? key,
  this.onTap,
  this.onTrailingPressed,
  this.asSelectionTile = false,
  this.item,
  this.selectSingle = false,
  this.selectedList,
}) : super(key: key);