String countMinutes(int difference) { int count = (difference / 60000).truncate(); return count.toString() + (count > 1 ? ' minutes' : ' minute'); }