createAppWidgetWrapper method

Widget createAppWidgetWrapper(
  1. Widget child
)
inherited

Wraps the Widget that will ultimately be passed to Flutter's runApp function. This is used when the plugin needs to wrap App.createAppWidget to add widgets to the App's widget tree.

Implementation

Widget createAppWidgetWrapper(Widget child) => child;