Suggestion constructor

const Suggestion({
  1. required String label,
  2. required String insertText,
  3. required SuggestionType type,
  4. String? description,
  5. IconData? icon,
})

Implementation

const Suggestion({
  required this.label,
  required this.insertText,
  required this.type,
  this.description,
  this.icon,
});