toString method

  1. @override
String toString()
override

Returns a readable string containing all speed sample fields.

Implementation

@override
String toString() {
  return 'NetworkSpeedSample('
      'timestampMillis: $timestampMillis, '
      'rxBytesPerSecond: $rxBytesPerSecond, '
      'txBytesPerSecond: $txBytesPerSecond, '
      'rxKbps: $rxKbps, '
      'txKbps: $txKbps, '
      'totalRxBytes: $totalRxBytes, '
      'totalTxBytes: $totalTxBytes, '
      'isSupported: $isSupported'
      ')';
}