ReferenceLineConfig constructor

const ReferenceLineConfig({
  1. required Offset start,
  2. required Offset end,
  3. Color? color,
  4. double? width,
  5. List<double>? dashPattern,
  6. String? label,
  7. TextStyle? labelStyle,
})

Implementation

const ReferenceLineConfig({
  required this.start,
  required this.end,
  this.color,
  this.width,
  this.dashPattern,
  this.label,
  this.labelStyle,
});