PieChartDataModel constructor

PieChartDataModel({
  1. num count = 0,
  2. Color? color,
  3. String? text,
  4. TextStyle? textStyle,
  5. bool showTextTitle = false,
})

Implementation

PieChartDataModel({
  this.count = 0,
  this.color,
  this.text,
  this.textStyle,
  this.showTextTitle = false,
});