ContactsListTile constructor

const ContactsListTile({
  1. Key? key,
  2. required FollowUser user,
  3. GestureTapCallback? onTap,
  4. GestureLongPressCallback? onLongPress,
  5. Color? tileColor,
  6. bool selected = false,
  7. Color? selectedTileColor,
  8. EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(horizontal: 8),
})

Creates a new instance of ContactsListTile widget.

Implementation

const ContactsListTile({
  super.key,
  required this.user,
  this.onTap,
  this.onLongPress,
  this.tileColor,
  this.selected = false,
  this.selectedTileColor,
  this.contentPadding = const EdgeInsets.symmetric(horizontal: 8),
});