NetworkProfile constructor

NetworkProfile({
  1. String? arn,
  2. String? description,
  3. int? downlinkBandwidthBits,
  4. int? downlinkDelayMs,
  5. int? downlinkJitterMs,
  6. int? downlinkLossPercent,
  7. String? name,
  8. NetworkProfileType? type,
  9. int? uplinkBandwidthBits,
  10. int? uplinkDelayMs,
  11. int? uplinkJitterMs,
  12. int? uplinkLossPercent,
})

Implementation

NetworkProfile({
  this.arn,
  this.description,
  this.downlinkBandwidthBits,
  this.downlinkDelayMs,
  this.downlinkJitterMs,
  this.downlinkLossPercent,
  this.name,
  this.type,
  this.uplinkBandwidthBits,
  this.uplinkDelayMs,
  this.uplinkJitterMs,
  this.uplinkLossPercent,
});