MentionModel constructor

const MentionModel({
  1. required String tagType,
  2. int? id,
  3. String? mentionName,
  4. int? locationStart,
  5. int? locationEnd,
})

Stores all data related to a mention

Implementation

const MentionModel({
  required this.tagType,
  this.id,
  this.mentionName,
  this.locationStart,
  this.locationEnd,
});