BfdStatusPacketCounts.fromJson constructor

BfdStatusPacketCounts.fromJson(
  1. Map json_
)

Implementation

BfdStatusPacketCounts.fromJson(core.Map json_)
  : this(
      numRx: json_['numRx'] as core.int?,
      numRxRejected: json_['numRxRejected'] as core.int?,
      numRxSuccessful: json_['numRxSuccessful'] as core.int?,
      numTx: json_['numTx'] as core.int?,
    );