minutesToSimpleFormat method
Implementation
String minutesToSimpleFormat({bool isEnglish = true}) {
int totalMinutes = toInt();
int days = totalMinutes ~/ (60 * 24); // 计算天数
if (days < 1) {
return minutesToHmFormat();
}
return '${days}day';
}