Mention constructor

Mention({
  1. required String trigger,
  2. List<Map<String, dynamic>> data = const [],
  3. TextStyle? style,
  4. bool matchAll = false,
  5. Widget suggestionBuilder(
    1. Map<String, dynamic>
    )?,
  6. bool disableMarkup = false,
  7. String markupBuilder(
    1. String trigger,
    2. String mention,
    3. String value
    )?,
})

Implementation

Mention({
  required this.trigger,
  this.data = const [],
  this.style,
  this.matchAll = false,
  this.suggestionBuilder,
  this.disableMarkup = false,
  this.markupBuilder,
});