buildInit method

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

Initialize custom bindings for this BeamLocation using BuildContext. Similar to builder, but is not tied to Widget tree.

This will be called on just the first build of this BeamLocation and sets mounted to true. It is called right before buildPages.

Implementation

@mustCallSuper
void buildInit(BuildContext context) {
  _mounted = true;
}