mirror of
https://github.com/flutter/samples.git
synced 2025-11-09 22:38:42 +00:00
7 lines
94 B
Dart
7 lines
94 B
Dart
class StatForWeek {
|
|
int weekIndex;
|
|
int stat;
|
|
|
|
StatForWeek(this.weekIndex, this.stat);
|
|
}
|