Mention constructor

Mention({
  1. required String imageURL,
  2. required String subtitle,
  3. required String title,
  4. String? id,
  5. Map<String, dynamic>? parameters,
})

Implementation

Mention(
    {required this.imageURL,
    required this.subtitle,
    required this.title,
    this.id,
    this.parameters});