ReferenceAreas constructor

const ReferenceAreas({
  1. Key? key,
  2. required List<ReferenceAreaConfig> areas,
  3. Color color = Colors.blue,
  4. double opacity = 0.2,
  5. Color? borderColor,
  6. double borderWidth = 1,
  7. TextStyle? labelStyle,
})

Implementation

const ReferenceAreas({
  super.key,
  required this.areas,
  this.color = Colors.blue,
  this.opacity = 0.2,
  this.borderColor,
  this.borderWidth = 1,
  this.labelStyle,
});