delayMicros function
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));