h property

Convert num to Duration in hours.

numをhoursのDurationに変換します。

Implementation

Duration get h =>
    Duration(microseconds: (this * 1000 * 1000 * 60 * 60).round());