ModalNavbar constructor

const ModalNavbar({
  1. Key? key,
  2. VoidCallback? onBack,
  3. VoidCallback? onTapTitle,
  4. required Widget body,
  5. required String title,
  6. NavbarActionButton? leftAction,
  7. bool safeAreaLeft = false,
  8. bool safeAreaRight = false,
  9. bool safeAreaBottom = true,
  10. bool noClose = false,
  11. bool divider = true,
})

Implementation

const ModalNavbar({
  super.key,
  this.onBack,
  this.onTapTitle,
  required this.body,
  required this.title,
  this.leftAction,
  this.safeAreaLeft = false,
  this.safeAreaRight = false,
  this.safeAreaBottom = true,
  this.noClose = false,
  this.divider = true,
});