Suggestion constructor

Suggestion({
  1. required String suggestion,
  2. required String type,
  3. String tooltip = "",
})

Implementation

Suggestion({required this.suggestion, required this.type, this.tooltip = ""});