MentionData<T extends Object?> constructor
If you want any model to be dedicated to mentions, you have to wrap it in MentionData.
Parameters:
mentionName
- the name by which the search will take place.data
- your model.
Implementation
MentionData({
required this.id,
required this.mentionName,
this.data,
});