setTimeoutMicros method
Implementation
void setTimeoutMicros(int value) {
_checkNotDisposed();
if (value < 0) throw RangeError.range(value, 0, null, 'timeoutMicros');
_timeout = Duration(microseconds: value);
}
void setTimeoutMicros(int value) {
_checkNotDisposed();
if (value < 0) throw RangeError.range(value, 0, null, 'timeoutMicros');
_timeout = Duration(microseconds: value);
}