DanUIDottedBorder constructor

const DanUIDottedBorder({
  1. Key? key,
  2. Color? color,
  3. Color backgroundColor = Colors.transparent,
  4. double strokeWidth = 2.0,
  5. double dashWidth = 2.0,
  6. double dashSpace = 2.0,
  7. double radius = 16.0,
  8. required Widget child,
})

Implementation

const DanUIDottedBorder({
  super.key,
  this.color,
  this.backgroundColor = Colors.transparent,
  this.strokeWidth = 2.0,
  this.dashWidth = 2.0,
  this.dashSpace = 2.0,
  this.radius = 16.0,
  required this.child,
});