SummernoteAtMention constructor

const SummernoteAtMention({
  1. List<String> getSuggestionsMobile(
    1. String
    )?,
  2. List<String>? mentionsWeb,
  3. void onSelect(
    1. String
    )?,
})

Implementation

const SummernoteAtMention({
  this.getSuggestionsMobile,
  this.mentionsWeb,
  this.onSelect,
}) : assert(kIsWeb ? mentionsWeb != null : getSuggestionsMobile != null);