ChartPyramid constructor

const ChartPyramid({
  1. Key? key,
  2. List<ChartLineData> data = const [],
  3. double? height,
  4. TextStyle labelStyle = const TextStyle(color: Color(0xff263641), fontSize: 12),
})

Implementation

const ChartPyramid({
  super.key,
  this.data = const [],
  this.height,
  this.labelStyle = const TextStyle(color: Color(0xff263641), fontSize: 12),
});