1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-09 06:18:49 +00:00
Files
samples/web/github_dataviz/lib/data/data_series.dart
2019-05-07 13:32:08 -07:00

7 lines
97 B
Dart

class DataSeries {
String label;
List<int> series;
DataSeries(this.label, this.series);
}