toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final localIpAddress = this.localIpAddress;
  final localPort = this.localPort;
  final pid = this.pid;
  final processName = this.processName;
  final protocol = this.protocol;
  final remoteIpAddress = this.remoteIpAddress;
  final remotePort = this.remotePort;
  final state = this.state;
  return {
    'localIpAddress': ?localIpAddress,
    'localPort': ?localPort,
    'pid': ?pid,
    'processName': ?processName,
    'protocol': ?protocol,
    'remoteIpAddress': ?remoteIpAddress,
    'remotePort': ?remotePort,
    'state': ?state,
  };
}