KRDashedBorder constructor

const KRDashedBorder({
  1. Key? key,
  2. Color color = Colors.black,
  3. double strokeWidth = 1.0,
  4. required Widget child,
  5. double gap = 8.0,
})

Implementation

const KRDashedBorder(
    {Key? key,
    this.color = Colors.black,
    this.strokeWidth = 1.0,
    required this.child,
    this.gap = 8.0})
    : super(key: key);