onResume method

  1. @mustCallSuper
void onResume()
inherited

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

Implementation

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

  ZenLogger.logDebug('Controller $runtimeType resumed');
  resumeAllWorkers();
}