SectionBoxEnd constructor

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

Implementation

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