suggestion property

String? get suggestion

Implementation

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

Implementation

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