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