newSuggestions property

ValueListenable<List<SuggestionItemData>> get newSuggestions

newSuggestions as ValueNotifier for SuggestionList widget's ValueListenableBuilder. Use this to listen when suggestion gets added

 chatcontroller.newSuggestions.addListener((){});

For more functionalities see ValueNotifier.

Implementation

ValueListenable<List<SuggestionItemData>> get newSuggestions =>
    _replySuggestion;