secondsToHours property
Transform number of seconds into hours
Implementation
double get secondsToHours {
if (isNullOrZero) {
return 0;
} else {
return this / Duration.secondsPerHour;
}
}
Transform number of seconds into hours
double get secondsToHours {
if (isNullOrZero) {
return 0;
} else {
return this / Duration.secondsPerHour;
}
}