setRetryCount method

void setRetryCount(
  1. int retryCount
)

Sets the max number of times to re-attempt a timed-out request to the Branch API, before considering the request to have failed entirely. Default to 3. Note that the the network timeout, as set in setNetworkTimeout(int), together with the retry interval value from setRetryInterval(int) will determine if the max retry count will be attempted.

Implementation

void setRetryCount(int retryCount) {
  throw UnimplementedError('setRetryCount has not been implemented');
}