mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
7 lines
97 B
Dart
7 lines
97 B
Dart
class DataSeries {
|
|
String label;
|
|
List<int> series;
|
|
|
|
DataSeries(this.label, this.series);
|
|
}
|