bandwidthOut property

int get bandwidthOut

Returns total bytes sent by the P2P node since it started.

Returns 0 if metrics collection is disabled or the node is offline.

Implementation

int get bandwidthOut {
  final collector = metricsCollector;
  if (collector == null) return 0;
  return collector.totalBytesSent;
}