Wrapper constructor

const Wrapper({
  1. Key? key,
  2. double spineHeight = 8.0,
  3. double angle = 75,
  4. double radius = 5.0,
  5. double offset = 15,
  6. double? strokeWidth,
  7. Widget? child,
  8. double? elevation,
  9. Color shadowColor = Colors.grey,
  10. bool formEnd = false,
  11. Color color = Colors.green,
  12. WrapperSpinePathBuilder? spinePathBuilder,
  13. EdgeInsets padding = const EdgeInsets.all(8),
  14. SpineStyle style = SpineStyle.left,
})

Implementation

const Wrapper(
    {super.key,
    this.spineHeight = 8.0,
    this.angle = 75,
    this.radius = 5.0,
    this.offset = 15,
    this.strokeWidth,
    this.child,
    this.elevation,
    this.shadowColor = Colors.grey,
    this.formEnd = false,
    this.color = Colors.green,
    this.spinePathBuilder,
    this.padding = const EdgeInsets.all(8),
    this.style = SpineStyle.left});