inMicroseconds property

int inMicroseconds

Gets the number of microseconds represented by this offset, which may be negative.

Offsets are only accurate to second precision; the number of seconds is simply multiplied by 1,000,000 to give the number of microseconds.

Implementation

int get inMicroseconds => (inSeconds * TimeConstants.microsecondsPerSecond);