GeographicRotationStrategy constructor

GeographicRotationStrategy({
  1. String? targetCountry,
  2. String? targetRegion,
  3. int? maxLatency,
  4. bool preferSameRegion = true,
  5. bool useLatencyBasedSelection = true,
  6. Random? random,
})

Implementation

GeographicRotationStrategy({
  this.targetCountry,
  this.targetRegion,
  this.maxLatency,
  this.preferSameRegion = true,
  this.useLatencyBasedSelection = true,
  Random? random,
}) : _random = random ?? Random();