buildContent method
Builds the primary contents of the route.
Implementation
@override
Widget buildContent(BuildContext context) {
if (_widget == null) _widget = builder(context);
if (_widget != null) _RouterStack.instance.add(_widget!);
return _widget!;
}