NicePrintContainer constructor

const NicePrintContainer({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets padding = const EdgeInsets.all(24),
  4. Color? backgroundColor,
  5. bool showHeader = true,
  6. bool showFooter = true,
  7. Widget? header,
  8. Widget? footer,
  9. String? title,
  10. String? subtitle,
})

Implementation

const NicePrintContainer({
  super.key,
  required this.child,
  this.padding = const EdgeInsets.all(24),
  this.backgroundColor,
  this.showHeader = true,
  this.showFooter = true,
  this.header,
  this.footer,
  this.title,
  this.subtitle,
});