timeout property
int?
get
timeout
Request timeout (in milliseconds). The default value 0
indicates no timeout.
Implementation
int? get timeout => _wrapped.timeout;
set
timeout
(int? v)
Implementation
set timeout(int? v) {
_wrapped.timeout = v;
}