VLine constructor

const VLine({
  1. Key? key,
  2. Color? color,
  3. double? thickness,
  4. double? borderRadius,
  5. double? heightFactor,
  6. double? height,
})

Implementation

const VLine({
  Key? key,
  this.color,
  this.thickness,
  this.borderRadius,
  this.heightFactor,
  this.height,
}) : super(key: key);