LineAnnotationConfig constructor

const LineAnnotationConfig({
  1. Color color = const Color(0xFF666666),
  2. double strokeWidth = 1,
  3. List<double>? dashPattern,
  4. AnnotationOrientation orientation = AnnotationOrientation.horizontal,
})

Creates a line annotation configuration.

Implementation

const LineAnnotationConfig({
  super.color,
  super.strokeWidth,
  super.dashPattern,
  this.orientation = AnnotationOrientation.horizontal,
});