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