SectionBox constructor

const SectionBox({
  1. Key? key,
  2. Color? color,
  3. Color? borderColor,
  4. double? borderRadius,
  5. EdgeInsets? margin,
  6. EdgeInsets? padding,
  7. double borderWidth = 1,
  8. required Widget child,
  9. bool topLeftRadius = true,
  10. bool topRightRadius = true,
  11. bool bottomLeftRadius = true,
  12. bool bottomRightRadius = true,
})

Implementation

const SectionBox({
  super.key,
  this.color,
  this.borderColor,
  this.borderRadius,
  this.margin,
  this.padding,
  this.borderWidth = 1,
  required this.child,
  this.topLeftRadius = true,
  this.topRightRadius = true,
  this.bottomLeftRadius = true,
  this.bottomRightRadius = true,
});