MyDashedDivider constructor

const MyDashedDivider({
  1. Key? key,
  2. double height = 1,
  3. Color color = Colors.black,
  4. double dashWidth = 10,
  5. double dashSpace = 10,
})

Implementation

const MyDashedDivider(
    {super.key,
    this.height = 1,
    this.color = Colors.black,
    this.dashWidth = 10,
    this.dashSpace = 10});