inMicroseconds property Null safety

int inMicroseconds

The number of whole microseconds spanned by this Duration.

The returned value can be greater than 999999. For example a duration of three seconds, 125 milliseconds and 369 microseconds has 3125369 microseconds.

Implementation

int get inMicroseconds => _duration;