CustomPathDottedBorderOptions constructor

const CustomPathDottedBorderOptions({
  1. required PathBuilder customPath,
  2. EdgeInsets borderPadding = EdgeInsets.zero,
  3. EdgeInsets padding = const EdgeInsets.all(2),
  4. double strokeWidth = 1,
  5. Color color = Colors.black,
  6. Gradient? gradient,
  7. List<double> dashPattern = const <double>[3, 1],
  8. StackFit stackFit = StackFit.loose,
  9. StrokeCap strokeCap = StrokeCap.butt,
})

Implementation

const CustomPathDottedBorderOptions({
  required this.customPath,
  super.borderPadding,
  super.padding,
  super.strokeWidth,
  super.color,
  super.gradient,
  super.dashPattern,
  super.stackFit,
  super.strokeCap,
}) : super(borderType: null);