import 'dart:async';이 패키지에서 가져와야 한다. int totalSeconds = 1500; // 사용자가 버튼을 누를 때만 타이머가 생성되게 할 예정이라 late로 초기화를 미루자. late Timer timer; void onTick(Timer timer) { setState(() { totalSeconds = totalSeconds - 1; }); } void onStartPressed() { timer = Timer.periodic(const Duration(seconds: 1), onTick); }start 버튼을 누르면...Timer.periodic이 정해진 간격에 한번씩 함수를 실행하도록 한다.여기에서는 1초 간격으로 함수 onTick을..