BetweenLineData constructor

const BetweenLineData({
  1. bool visible = true,
  2. ChartRotation rotation = ChartRotation.d0,
  3. Offset origin = Offset.zero,
  4. IChartLayout? layout,
  5. bool? crop,
  6. required LineData from,
  7. required LineData to,
  8. Color areaColor = const Color(0xFF000000),
  9. Gradient? areaGradient,
  10. PathFillType? areaFillType,
})

Implementation

const BetweenLineData({
  this.visible = true,
  this.rotation = ChartRotation.d0,
  this.origin = Offset.zero,
  this.layout,
  this.crop,
  required this.from,
  required this.to,
  this.areaColor = const Color(0xFF000000),
  this.areaGradient,
  this.areaFillType,
});