toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final targetReceivedBytesPerSecond = this.targetReceivedBytesPerSecond;
  final targetReceivedPacketsPerSecond = this.targetReceivedPacketsPerSecond;
  final targetSentBytesPerSecond = this.targetSentBytesPerSecond;
  final targetSentPacketsPerSecond = this.targetSentPacketsPerSecond;
  return {
    'targetReceivedBytesPerSecond': ?targetReceivedBytesPerSecond,
    'targetReceivedPacketsPerSecond': ?targetReceivedPacketsPerSecond,
    'targetSentBytesPerSecond': ?targetSentBytesPerSecond,
    'targetSentPacketsPerSecond': ?targetSentPacketsPerSecond,
  };
}