DashedBorder constructor

const DashedBorder({
  1. Key? key,
  2. required Widget child,
  3. required Color color,
  4. double strokeWidth = 2.0,
  5. double dashWidth = 5.0,
  6. double dashSpace = 3.0,
  7. BorderRadius? borderRadius,
})

Implementation

const DashedBorder({
  Key? key,
  required this.child,
  required this.color,
  this.strokeWidth = 2.0,
  this.dashWidth = 5.0,
  this.dashSpace = 3.0,
  this.borderRadius,
}) : super(key: key);