onResume method

  1. @mustCallSuper
void onResume()

Called when the app is resumed (comes back to foreground)

Implementation

@mustCallSuper
void onResume() {
  if (_checkDisposed('onResume')) return;

  if (ZenConfig.enableDebugLogs) {
    ZenLogger.logDebug('Controller $runtimeType resumed');
  }
  resumeAllWorkers();
}