start method
override
Implementation
@override
void start() {
_timer = Timer.periodic(const Duration(seconds: 1), (_) {
state = state.copyWith(seconds: state.seconds + 1);
});
}
@override
void start() {
_timer = Timer.periodic(const Duration(seconds: 1), (_) {
state = state.copyWith(seconds: state.seconds + 1);
});
}