ContactListTile constructor

const ContactListTile({
  1. Key? key,
  2. String? name,
  3. String? atSign,
  4. Widget? image,
  5. Function? onAdd,
  6. required Function onRemove,
  7. bool isSelected = false,
  8. bool onlyRemoveMethod = false,
  9. bool plainView = false,
  10. Function? onTileTap,
})

Implementation

const ContactListTile(
    {Key? key,
    this.name,
    this.atSign,
    this.image,
    this.onAdd,
    required this.onRemove,
    this.isSelected = false,
    this.onlyRemoveMethod = false,
    this.plainView = false,
    this.onTileTap})
    : super(key: key);