onBuildUI method

  1. @mustCallSuper
void onBuildUI(
  1. BuildContext context
)

Method which runs when widget builds UI

Implementation

@mustCallSuper
void onBuildUI(BuildContext context) {
  this.context = context;

  if (!_isContextReady) {
    _isContextReady = true;
    onContextReady(context);
    onBindReactor();
  }
}