UiDivider constructor

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

Implementation

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