formattedTime method
Retorna String com tempo formatado. É possível configurar o caractere separador. É possível configurar se deve incluir segundos.
Implementation
String formattedTime([bool includeSeconds = true, String separator = ':']) {
String time = '${hour.pad}$separator${minute.pad}';
if (includeSeconds) time += '$separator${second.pad}';
return time;
}