onResume method
Called when the app is resumed (comes back to foreground)
Implementation
@mustCallSuper
void onResume() {
  if (_checkDisposed('onResume')) return;
  ZenLogger.logDebug('Controller $runtimeType resumed');
  resumeAllWorkers();
}Called when the app is resumed (comes back to foreground)
@mustCallSuper
void onResume() {
  if (_checkDisposed('onResume')) return;
  ZenLogger.logDebug('Controller $runtimeType resumed');
  resumeAllWorkers();
}