Formats raw minutes into a human-readable duration.
static String minutes(num? mins) { if (mins == null) return ""; return seconds(mins * 60); }