MentionTile constructor

const MentionTile(
  1. Member member, {
  2. Key? key,
  3. Widget? title,
  4. Widget? subtitle,
  5. Widget? leading,
  6. Widget? trailing,
})

Constructor for creating a MentionTile widget

Implementation

const MentionTile(
  this.member, {
  Key? key,
  this.title,
  this.subtitle,
  this.leading,
  this.trailing,
}) : super(key: key);