LineOrLineView constructor

const LineOrLineView({
  1. Key? key,
  2. String? textOr,
  3. TextStyle? styleOr,
  4. Color? lineColor,
  5. double? lineHeight,
})

Implementation

const LineOrLineView({
  Key? key,
  this.textOr,
  this.styleOr,
  this.lineColor,
  this.lineHeight,
}) : super(key: key);