sendTimeout property
Implementation
Duration? get sendTimeout => _sendTimeout;
Implementation
set sendTimeout(Duration? value) {
if (value != null && value.isNegative) {
throw StateError('sendTimeout should be positive');
}
_sendTimeout = value;
}