PolygonDataSets constructor

PolygonDataSets({
  1. required String title,
  2. required List<double> valueList,
  3. required Color color,
  4. bool hidden = false,
})

Implementation

PolygonDataSets({
  required this.title,
  required this.valueList,
  required this.color,
  this.hidden = false,
});