runInitTasks method

  1. @protected
Future runInitTasks()

This method calls the initializers and once they complete redirects to the widget provided in navigateAfterInit

Implementation

@protected
Future runInitTasks() async {
  /// Run each initializer method sequentially
  await widget.futureTask();
  _navigationTask();
}