CircularDottedBorderOptions constructor

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

Implementation

const CircularDottedBorderOptions({
  super.borderPadding,
  super.padding,
  super.strokeWidth,
  super.color,
  super.gradient,
  super.dashPattern,
  super.stackFit,
  super.strokeCap,
}) : super(borderType: BorderType.Circle);