toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => withoutNulls({
  'congestion': congestion,
  'debug': debug,
  'bbrProfile': bbrProfile,
  'brutalUp': brutalUp?.toJson(),
  'brutalDown': brutalDown?.toJson(),
  'udpHop': udpHop?.toJson(),
  'initStreamReceiveWindow': initStreamReceiveWindow,
  'maxStreamReceiveWindow': maxStreamReceiveWindow,
  'initConnectionReceiveWindow': initConnectionReceiveWindow,
  'maxConnectionReceiveWindow': maxConnectionReceiveWindow,
  'maxIdleTimeout': maxIdleTimeout,
  'keepAlivePeriod': keepAlivePeriod,
  'disablePathMTUDiscovery': disablePathMTUDiscovery,
  'maxIncomingStreams': maxIncomingStreams,
});