getDialPeerTimeout method
Gets the dial peer timeout from the Context
Implementation
Duration getDialPeerTimeout() {
final timeout = getValue(_dialPeerTimeoutKey);
if (timeout != null) {
return timeout as Duration;
}
return dialPeerTimeout;
}