Mention constructor

Mention({
  1. String? id,
  2. String? name,
  3. String? username,
})

Implementation

Mention({
  this.id,
  this.name,
  this.username,
});