Time.fromDecaseconds constructor

Time.fromDecaseconds(
  1. Rational decaseconds
)

Creates a Time representing the specified number of decaseconds.

Implementation

factory Time.fromDecaseconds(Rational decaseconds) =>
    Time.fromUnits(TimeUnit.decasecond, decaseconds);