setMaxDownloadRetryTime method
Sets the new maximum download retry time.
Implementation
void setMaxDownloadRetryTime(Duration time) {
  assert(!time.isNegative);
  return _delegate.setMaxDownloadRetryTime(time.inMilliseconds);
}Sets the new maximum download retry time.
void setMaxDownloadRetryTime(Duration time) {
  assert(!time.isNegative);
  return _delegate.setMaxDownloadRetryTime(time.inMilliseconds);
}