StreamMessageSearchListTile constructor

const StreamMessageSearchListTile({
  1. Key? key,
  2. required GetMessageResponse messageResponse,
  3. Widget? leading,
  4. Widget? title,
  5. Widget? subtitle,
  6. Widget? trailing,
  7. GestureTapCallback? onTap,
  8. GestureLongPressCallback? onLongPress,
  9. Color? tileColor,
  10. VisualDensity visualDensity = VisualDensity.compact,
  11. EdgeInsetsGeometry contentPadding = const EdgeInsets.symmetric(horizontal: 8),
})

Creates a new instance of StreamMessageSearchListTile.

Implementation

const StreamMessageSearchListTile({
  super.key,
  required this.messageResponse,
  this.leading,
  this.title,
  this.subtitle,
  this.trailing,
  this.onTap,
  this.onLongPress,
  this.tileColor,
  this.visualDensity = VisualDensity.compact,
  this.contentPadding = const EdgeInsets.symmetric(horizontal: 8),
});