toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bandwidth = this.bandwidth;
  final burst = this.burst;
  final delay = this.delay;
  final packetDuplicationRatio = this.packetDuplicationRatio;
  final packetLossRatio = this.packetLossRatio;
  return {
    'bandwidth': ?bandwidth,
    'burst': ?burst,
    'delay': ?delay,
    'packetDuplicationRatio': ?packetDuplicationRatio,
    'packetLossRatio': ?packetLossRatio,
  };
}