builder property

Widget Function(BuildContext, Widget?)? get builder

Builder function to wrap the entire app.

Useful for adding global overlays, performance monitoring, or other wrappers. The child parameter is the entire MaterialApp. Example: (context, child) => MyGlobalWrapper(child: child)

Implementation

Widget Function(BuildContext, Widget?)? get builder => null;