refresh method

void refresh(
  1. K key, {
  2. bool force = false,
  3. bool alwaysTouch = false,
})

Refreshes the ResultNotifier with the specified key, if needed.

See ResultNotifier.refresh for more information.

Implementation

void refresh(K key, {bool force = false, bool alwaysTouch = false}) {
  getNotifier(key, shouldRefresh: true, force: force, alwaysTouch: alwaysTouch);
}