NetworkUtilization.fromJson constructor

NetworkUtilization.fromJson(
  1. Map json_
)

Implementation

NetworkUtilization.fromJson(core.Map json_)
  : this(
      targetReceivedBytesPerSecond:
          json_['targetReceivedBytesPerSecond'] as core.int?,
      targetReceivedPacketsPerSecond:
          json_['targetReceivedPacketsPerSecond'] as core.int?,
      targetSentBytesPerSecond:
          json_['targetSentBytesPerSecond'] as core.int?,
      targetSentPacketsPerSecond:
          json_['targetSentPacketsPerSecond'] as core.int?,
    );