Time.fromCentiseconds constructor

Time.fromCentiseconds(
  1. Rational centiseconds
)

Creates a Time representing the specified number of centiseconds.

Implementation

factory Time.fromCentiseconds(Rational centiseconds) =>
    Time.fromUnits(TimeUnit.centisecond, centiseconds);