SWLineChart constructor

const SWLineChart({
  1. Key? key,
  2. required double y,
  3. required double x,
  4. double? y2,
  5. double? x2,
  6. List<LineChartBarData>? lineBarsData,
})

Implementation

const SWLineChart({
  Key? key,
  required this.y,
  required this.x,
  this.y2,
  this.x2,
  this.lineBarsData,
}) : super(key: key);