onReady method

  1. @override
void onReady()
override

Called 1 frame after onInit(). It is the perfect place to enter navigation events, like snackbar, dialogs, or a new route, or async request.

Implementation

@override
void onReady() {
  super.onReady();
  if (this is DynamicSourceGetController) {
    var controller = this as DynamicSourceGetController;
    if (controller.changeSource) {
      _initialiseSpecialControllers();
    }
  }
}