ReferenceLines constructor

const ReferenceLines({
  1. Key? key,
  2. required List<ReferenceLineConfig> lines,
  3. Color color = Colors.grey,
  4. double width = 1,
  5. List<double>? dashPattern,
  6. TextStyle? labelStyle,
})

Implementation

const ReferenceLines({
  super.key,
  required this.lines,
  this.color = Colors.grey,
  this.width = 1,
  this.dashPattern,
  this.labelStyle,
});