Time.fromMicroseconds constructor

Time.fromMicroseconds(
  1. Rational microseconds
)

Creates a Time representing the specified number of microseconds.

Implementation

factory Time.fromMicroseconds(Rational microseconds) =>
    Time.fromUnits(TimeUnit.microsecond, microseconds);