LayoutWrapper constructor

const LayoutWrapper({
  1. required Widget child,
  2. EdgeInsets? contentPadding,
  3. bool useSafeArea = true,
  4. PreferredSize? appBar,
  5. List<Widget>? persistentFooterButtons,
  6. AlignmentDirectional footerAlignment = AlignmentDirectional.centerStart,
  7. Key? key,
})

Implementation

const LayoutWrapper({
  required this.child,
  this.contentPadding,
  this.useSafeArea = true,
  this.appBar,
  this.persistentFooterButtons,
  this.footerAlignment = AlignmentDirectional.centerStart,
  super.key,
});