touch method

void touch(
  1. K key
)

Touches the ResultNotifier with the specified key.

See ResultNotifier.touch for more information.

Implementation

void touch(K key) {
  _cache[key]?.notifier.touch();
}