app property
Widget
get
app
Implementation
Widget get app {
if (materialApp != null) return materialApp!;
if (widgetsApp != null) return widgetsApp!;
if (cupertinoApp != null) return cupertinoApp!;
return Container();
}