HLine constructor

const HLine({
  1. Key? key,
  2. Color? color,
  3. double? thickness,
  4. double? borderRadius,
  5. double? widthFactor,
  6. double? width,
  7. Widget? overlay,
  8. Alignment? alignment,
})

Implementation

const HLine({
  Key? key,
  this.color,
  this.thickness,
  this.borderRadius,
  this.widthFactor,
  this.width,
  this.overlay,
  this.alignment,
}) : super(key: key);