h property

Short-hand for hours

Implementation

Duration get h {
  final mins = (this * 60).toInt();
  return Duration(minutes: mins);
}