toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final numRx = this.numRx;
  final numRxRejected = this.numRxRejected;
  final numRxSuccessful = this.numRxSuccessful;
  final numTx = this.numTx;
  return {
    'numRx': ?numRx,
    'numRxRejected': ?numRxRejected,
    'numRxSuccessful': ?numRxSuccessful,
    'numTx': ?numTx,
  };
}