NicePolarSeries constructor

const NicePolarSeries({
  1. required String name,
  2. required List<double> values,
  3. Color? color,
  4. double fillOpacity = 0.15,
  5. double strokeWidth = 2,
})

Implementation

const NicePolarSeries({
  required this.name,
  required this.values,
  this.color,
  this.fillOpacity = 0.15,
  this.strokeWidth = 2,
});