BrnDashedLine constructor

const BrnDashedLine({
  1. Key? key,
  2. required Widget contentWidget,
  3. Axis axis = _normalAxis,
  4. double dashedLength = _normalDashedLength,
  5. double dashedThickness = _normalDashedThickness,
  6. double dashedSpacing = _normalDashedSpacing,
  7. Color? color,
  8. double dashedOffset = 0.0,
  9. DashedLinePosition position = _normalPosition,
})

Implementation

const BrnDashedLine({
  super.key,
  required this.contentWidget,
  this.axis = _normalAxis,
  this.dashedLength = _normalDashedLength,
  this.dashedThickness = _normalDashedThickness,
  this.dashedSpacing = _normalDashedSpacing,
  this.color,
  this.dashedOffset = 0.0,
  this.position = _normalPosition,
});