AnnotationConfig constructor

const AnnotationConfig({
  1. Color color = const Color(0xFF666666),
  2. double strokeWidth = 1,
  3. List<double>? dashPattern,
})

Creates an annotation configuration.

Implementation

const AnnotationConfig({
  this.color = const Color(0xFF666666),
  this.strokeWidth = 1,
  this.dashPattern,
});