LineView constructor

const LineView({
  1. Key? key,
  2. EdgeInsets? margin,
  3. Color? lineColor,
  4. double? lineHeight,
})

Implementation

const LineView({
  Key? key,
  this.margin,
  this.lineColor,
  this.lineHeight,
}) : super(key: key);