VBarChartModel constructor

const VBarChartModel({
  1. int? index,
  2. String? label,
  3. String? tooltip,
  4. double jumlah = 0,
  5. List<Color>? colors = const [Colors.teal, Colors.indigo],
  6. Widget? description,
})

Implementation

const VBarChartModel(
    {this.index,
    this.label,
    this.tooltip,
    this.jumlah = 0,
    this.colors = const [Colors.teal, Colors.indigo],
    this.description});