TSDuration.fromInt constructor

TSDuration.fromInt(
  1. int microseconds
)

Implementation

factory TSDuration.fromInt(int microseconds) =>
    TSDuration.fromMicroseconds(BigInt.from(microseconds));