Returns true if the Duration is equal to or longer than one second but less than one minute.
true
bool get isInSeconds => inSeconds > 0 && !isInMinutes;