SeriesStyle constructor

const SeriesStyle({
  1. Color? color,
  2. double strokeWidth = 2.0,
  3. Color? fillColor,
  4. Gradient? gradient,
  5. bool showMarkers = false,
  6. double markerRadius = 4.0,
  7. double opacity = 1.0,
})

Implementation

const SeriesStyle({
  this.color,
  this.strokeWidth = 2.0,
  this.fillColor,
  this.gradient,
  this.showMarkers = false,
  this.markerRadius = 4.0,
  this.opacity = 1.0,
});