RoundRobinRotationStrategy constructor

RoundRobinRotationStrategy({
  1. required List<Proxy> proxies,
})

Creates a new RoundRobinRotationStrategy with the given proxies

Implementation

RoundRobinRotationStrategy({required List<Proxy> proxies})
  : _proxies = List.from(proxies);