DashedContainer constructor

DashedContainer({
  1. required Widget child,
  2. Color dashColor = Colors.black,
  3. double strokeWidth = 1.0,
  4. double blankLength = 5.0,
  5. double dashedLength = 5.0,
  6. double borderRadius = 0.0,
  7. BoxShape boxShape = BoxShape.rectangle,
})

Implementation

DashedContainer({
  required this.child,
  this.dashColor = Colors.black,
  this.strokeWidth = 1.0,
  this.blankLength = 5.0,
  this.dashedLength = 5.0,
  this.borderRadius = 0.0,
  this.boxShape = BoxShape.rectangle,
});