NiceRealtimeSeries constructor
- required String name,
- Color color = const Color(0xFF1976D2),
- bool filled = false,
- List<
NiceRealtimePoint> ? data,
Implementation
NiceRealtimeSeries({
required this.name,
this.color = const Color(0xFF1976D2),
this.filled = false,
List<NiceRealtimePoint>? data,
}) : data = data ?? [];