GunPage constructor

const GunPage({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor = Colors.white,
  4. WillPopCallback? onWillPop,
  5. Widget? floatingActionButton,
  6. PreferredSizeWidget? appBar,
  7. GunAppBar? appBarTop,
  8. Widget? appBarBottom,
  9. Widget? bottomSlidingPanel,
  10. Brightness statusBarBrightness = Brightness.light,
  11. FloatingActionButtonLocation? floatingActionButtonLocation,
  12. Widget? drawer,
  13. Widget? endDrawer,
  14. Key? keyScaffold,
  15. bool keyboardDimissable = false,
  16. FloatingActionButtonAnimator? floatingActionButtonAnimator,
  17. bool? resizeToAvoidBottomInset,
})

Implementation

const GunPage(
    {Key? key,
    required this.child,
    this.backgroundColor = Colors.white,
    this.onWillPop,
    this.floatingActionButton,
    this.appBar,
    this.appBarTop,
    this.appBarBottom,
    this.bottomSlidingPanel,
    this.statusBarBrightness = Brightness.light,
    this.floatingActionButtonLocation,
    this.drawer,
    this.endDrawer,
    this.keyScaffold,
    this.keyboardDimissable = false,
    this.floatingActionButtonAnimator,
    this.resizeToAvoidBottomInset})
    : super(key: key);