refresh method

void refresh()

Resets the suggestions so that they are requested again.

Implementation

void refresh() {
  ChangeNotifier.debugAssertNotDisposed(this);
  _suggestions = null;
  _refreshesController.add(null);
}