LukeStepEdgePainter constructor

LukeStepEdgePainter({
  1. required Offset source,
  2. required Offset target,
  3. required bool isDashed,
  4. required Color color,
  5. required double strokeWidth,
  6. double cornerRadius = 8.0,
  7. double horizontalStepPercent = 0.5,
  8. double verticalStepPercent = 0.5,
  9. double dashWidth = 8.0,
  10. double dashSpace = 8.0,
  11. double dashAnimationSpeed = 1,
  12. bool isAnimated = false,
  13. double dashOffset = 1,
})

Implementation

LukeStepEdgePainter({
  required super.source,
  required super.target,
  required super.isDashed,
  required super.color,
  required super.strokeWidth,
  this.cornerRadius = 8.0,
  this.horizontalStepPercent = 0.5,
  this.verticalStepPercent = 0.5,
  this.dashWidth = 8.0,
  this.dashSpace = 8.0,
  this.dashAnimationSpeed = 1,
  this.isAnimated = false,
  this.dashOffset = 1,
});