onInit method

  1. @mustCallSuper
void onInit()

This method is called before building the widget

This method uses WidgetsBinding, override the onReady method to run after build

Implementation

@mustCallSuper
void onInit() {
  WidgetsBinding.instance.addPostFrameCallback((_) => onReady());
}