AppScreen constructor Null safety
- {Key? key,
- required Widget body,
- Color? backgroundColor,
- SystemUiOverlayStyle? systemOverlayStyle,
- PreferredSizeWidget? appBar,
Creates an app screen.
Implementation
const AppScreen({
Key? key,
required this.body,
this.backgroundColor,
this.systemOverlayStyle,
this.appBar,
this.bottomNavigationBar,
}) : super(key: key);