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