AppDashedDivider constructor

const AppDashedDivider({
  1. Key? key,
  2. double dashWidth = 8,
  3. double dashSpace = 4,
  4. double thickness = 1,
  5. Color? color,
  6. Axis direction = Axis.horizontal,
  7. MainAxisAlignment alignment = MainAxisAlignment.spaceBetween,
  8. BorderRadius? borderRadius,
  9. double indent = 0,
  10. double endIndent = 0,
  11. double length = double.infinity,
})

Creates a new AppDashedDivider.

The default configuration creates a horizontal dashed divider.

Implementation

const AppDashedDivider({
  super.key,
  this.dashWidth = 8,
  this.dashSpace = 4,
  this.thickness = 1,
  this.color,
  this.direction = Axis.horizontal,
  this.alignment = MainAxisAlignment.spaceBetween,
  this.borderRadius,
  this.indent = 0,
  this.endIndent = 0,
  this.length = double.infinity,
});