CircularContacts constructor

CircularContacts({
  1. Key? key,
  2. Function? onCrossPressed,
  3. Function? onLongPressed,
  4. Function? onTap,
  5. IconData? actionIcon,
  6. GroupContactsModel? groupContact,
  7. bool selectSingle = false,
  8. bool asSelectionTile = false,
  9. ValueChanged<List<GroupContactsModel?>>? selectedList,
})

Implementation

CircularContacts(
    {Key? key,
    this.onCrossPressed,
    this.onLongPressed,
    this.onTap,
    this.actionIcon,
    this.groupContact,
    this.selectSingle = false,
    this.asSelectionTile = false,
    this.selectedList})
    : super(key: key);