suggestions property

List? get suggestions

The curent LSP suggestions shown in the editor. The vale is List<dynamic> because it can be either String or LspCompletion. if the lspconfig is available and a valid server is configured, the List<LspCompletion> will be returned. else a List<String> with locally available words will be returned.

Implementation

List<dynamic>? get suggestions => suggestionsNotifier.value;