Wrapper constructor

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

Implementation

Wrapper(
    {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.spineType = SpineType.left});