NetworkConditions constructor

NetworkConditions({
  1. required String urlPattern,
  2. required num latency,
  3. required num downloadThroughput,
  4. required num uploadThroughput,
  5. ConnectionType? connectionType,
  6. num? packetLoss,
  7. int? packetQueueLength,
  8. bool? packetReordering,
})

Implementation

NetworkConditions({
  required this.urlPattern,
  required this.latency,
  required this.downloadThroughput,
  required this.uploadThroughput,
  this.connectionType,
  this.packetLoss,
  this.packetQueueLength,
  this.packetReordering,
});