PlexLineSeries constructor

const PlexLineSeries({
  1. required String name,
  2. required List<PlexLineDataPoint> data,
  3. Color? color,
})

Implementation

const PlexLineSeries({
  required this.name,
  required this.data,
  this.color,
});