notifyResume method

void notifyResume()

Notifies that listeners have resumed.

Implementation

@pragma('vm:prefer-inline')
void notifyResume() {
  for (final callback in _onResumeCallbacks) {
    _runGuarded(callback);
  }
}