rebuildAll method

  1. @override
void rebuildAll()
override

Rebuild all active pages.

Basically, do not use it.

Use this only if you want to force a rebuild.

Implementation

@override
void rebuildAll() {
  PageState._pageStack.forEach((element) => element.rebuild());
}