TrafficRule constructor

TrafficRule({
  1. double? bandwidth,
  2. double? burst,
  3. String? delay,
  4. double? packetDuplicationRatio,
  5. double? packetLossRatio,
})

Implementation

TrafficRule({
  this.bandwidth,
  this.burst,
  this.delay,
  this.packetDuplicationRatio,
  this.packetLossRatio,
});