currentlySelectedSuggestion property

int? get currentlySelectedSuggestion

Returns the index of the currently selected seuggestion if an LSP/normal suggestion is available.

Note: This will only work on mobile devices.

Implementation

int? get currentlySelectedSuggestion => selectedSuggestionNotifier.value;
set currentlySelectedSuggestion (int? value)

Implementation

set currentlySelectedSuggestion(int? value) =>
    selectedSuggestionNotifier.value = value;