String timeFormatter(int formatTime) { if (formatTime <= 9) { return '0$formatTime'; } return '$formatTime'; }