DashedBorderContainer constructor

const DashedBorderContainer({
  1. Key? key,
  2. Color dashColor = ui5590F6,
  3. double dashWidth = 2,
  4. double dashHeight = 1,
  5. double dashSpace = 2,
  6. double borderRadius = 8,
  7. required Widget child,
  8. VoidCallback? onTap,
})

Implementation

const DashedBorderContainer({
  Key? key,
  this.dashColor = ui5590F6,
  this.dashWidth = 2,
  this.dashHeight = 1,
  this.dashSpace = 2,
  this.borderRadius = 8,
  required this.child,
  this.onTap,
}) : super(key: key);