JuiDashedBorder constructor

const JuiDashedBorder({
  1. Key? key,
  2. Color? dashColor,
  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 JuiDashedBorder({
  Key? key,
  this.dashColor,
  this.dashWidth = 2,
  this.dashHeight = 1,
  this.dashSpace = 2,
  this.borderRadius = 8,
  required this.child,
  this.onTap,
}) : super(key: key);