suggestion property

String? suggestion

Implementation

String? get suggestion => _suggestion;
void suggestion=(String? value)

Implementation

set suggestion(String? value) {
  _suggestion = value;
  _checkSuggestion();
  notifyListeners();
}