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

7 lines
94 B
Dart

class StatForWeek {
int weekIndex;
int stat;
StatForWeek(this.weekIndex, this.stat);
}