CustomListTile constructor

const CustomListTile({
  1. Key? key,
  2. Function? onTap,
  3. Function? onTrailingPressed,
  4. bool asSelectionTile = false,
  5. bool asSingleSelectionTile = false,
  6. AtContact? contact,
  7. ContactService? contactService,
  8. ValueChanged<List<AtContact?>?>? selectedList,
})

Implementation

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