TabContext constructor
TabContext({})
Implementation
TabContext(
{this.backgroundColor = _transparent,
required Color chartColor,
required this.labelTextColor,
required Color noteLabelColor,
required Color noteShapeColor,
required Color techniqueColor})
: chartFillPaint = Paint()
..color = chartColor
..style = PaintingStyle.fill,
chartStrokePaint = Paint()
..color = chartColor
..strokeWidth = 1
..style = PaintingStyle.stroke,
noteLabelPaint = Paint()
..color = noteLabelColor
..strokeWidth = 2
..style = PaintingStyle.stroke,
noteShapePaint = Paint()
..color = noteShapeColor
..style = PaintingStyle.fill,
techniquePaint = Paint()
..color = techniqueColor
..strokeWidth = 2
..style = PaintingStyle.stroke;