BdBackLayout constructor

const BdBackLayout({
  1. Key? key,
  2. required Widget child,
  3. Widget? title,
  4. double? elevation,
  5. EdgeInsets? padding,
  6. Function? onPressed,
  7. Widget? bottomBanner,
  8. Color? backgroundColor,
})

Implementation

const BdBackLayout({
  Key? key,
  required this.child,
  this.title,
  this.elevation,
  this.padding,
  this.onPressed,
  this.bottomBanner,
  this.backgroundColor,
}) : super(key: key);