onResumed method
Called when the application is visible and is responding to the user i.e. in the foreground and running.
class MyController extends Controller {
@override
void onResumed() => print('App is resumed.');
}
Implementation
@visibleForOverriding
void onResumed() {}