LineHorizontal constructor

const LineHorizontal({
  1. Key? key,
  2. double? width,
  3. double height = 0.2,
  4. double radius = 0,
  5. Color? color,
  6. EdgeInsetsGeometry? margin,
})

Implementation

const LineHorizontal({
  super.key,
  this.width,
  this.height = 0.2,
  this.radius = 0,
  this.color,
  this.margin,
});