BetweenLineData constructor

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

Implementation

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