SectionBoxMid constructor

const SectionBoxMid({
  1. Key? key,
  2. Color? color,
  3. Color? borderColor,
  4. double borderWidth = 1,
  5. required Widget child,
  6. EdgeInsets? margin,
  7. EdgeInsets? padding,
})

Implementation

const SectionBoxMid({
  super.key,
   this.color,
   this.borderColor,
  this.borderWidth = 1,
  required this.child,
  this.margin,
  this.padding,
});