Time.fromDeciseconds constructor

Time.fromDeciseconds(
  1. Rational deciseconds
)

Creates a Time representing the specified number of deciseconds.

Implementation

factory Time.fromDeciseconds(Rational deciseconds) =>
    Time.fromUnits(TimeUnit.decisecond, deciseconds);