AreaAnnotationConfig constructor

const AreaAnnotationConfig({
  1. Color fillColor = const Color(0xFF666666),
  2. double fillOpacity = 0.2,
  3. bool showBorder = false,
  4. Color borderColor = const Color(0xFF666666),
  5. double borderWidth = 1,
  6. AnnotationOrientation orientation = AnnotationOrientation.horizontal,
})

Creates an area annotation configuration.

Implementation

const AreaAnnotationConfig({
  this.fillColor = const Color(0xFF666666),
  this.fillOpacity = 0.2,
  this.showBorder = false,
  this.borderColor = const Color(0xFF666666),
  this.borderWidth = 1,
  this.orientation = AnnotationOrientation.horizontal,
});