daysToHours property
Transform number of days into hours
Implementation
double get daysToHours {
if (isNullOrZero) {
return 0;
} else {
return (this * Duration.hoursPerDay).toDouble();
}
}
Transform number of days into hours
double get daysToHours {
if (isNullOrZero) {
return 0;
} else {
return (this * Duration.hoursPerDay).toDouble();
}
}