You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cloudsolutions-atoms/lib/models/timer_model.dart

10 lines
169 B
Dart

2 years ago
class TimerModel {
DateTime startAt;
DateTime endAt;
int durationInSecond;
1 year ago
// bool stopped;
2 years ago
1 year ago
TimerModel({this.startAt, this.endAt, this.durationInSecond});
}