setMaxDownloadRetryTime method

void setMaxDownloadRetryTime(
  1. Duration time
)
inherited

Sets the new maximum download retry time.

Implementation

void setMaxDownloadRetryTime(Duration time) {
  assert(!time.isNegative);
  return _delegate.setMaxDownloadRetryTime(time.inMilliseconds);
}