onResume method
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();
}