StreamUserMentionTile constructor

const StreamUserMentionTile(
  1. User user, {
  2. Key? key,
  3. Widget? title,
  4. Widget? subtitle,
  5. Widget? leading,
  6. Widget? trailing,
})

Shows user tiles for mentions.

Use title, subtitle, leading, trailing for substituting widgets in respective positions

Implementation

const StreamUserMentionTile(
  this.user, {
  super.key,
  this.title,
  this.subtitle,
  this.leading,
  this.trailing,
});