BdLayout constructor

const BdLayout({
  1. Key? key,
  2. required Widget child,
  3. AppBar? appBar,
  4. EdgeInsets? padding,
  5. double? topBannerHeight,
  6. Widget? topBanner,
  7. double? bottomBannerHeight,
  8. Widget? bottomBanner,
  9. Color? backgroundColor,
})

Implementation

const BdLayout({
  Key? key,
  required this.child,
  this.appBar,
  this.padding,
  this.topBannerHeight,
  this.topBanner,
  this.bottomBannerHeight,
  this.bottomBanner,
  this.backgroundColor,
}) : super(key: key);