delayMicros function

Future<void> delayMicros(
  1. int micros
)

Wait for the amount of microseconds specified in micros.

This is not the same as sleep. This function does not block any asynchronous operations in the current Isolate.

Implementation

Future<void> delayMicros(int micros) => delay(Duration(milliseconds: micros));