select method

void select(
  1. T suggestion
)

Should be called when a suggestion is selected.

This notifies potential listeners of the selection.

Implementation

void select(T suggestion) => _selectionsController.add(suggestion);