toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (lastThirtyMinutesAverageBytesPerSecond != null)
        'lastThirtyMinutesAverageBytesPerSecond':
            lastThirtyMinutesAverageBytesPerSecond!,
      if (lastTwoMinutesAverageBytesPerSecond != null)
        'lastTwoMinutesAverageBytesPerSecond':
            lastTwoMinutesAverageBytesPerSecond!,
      if (replicatedBytes != null) 'replicatedBytes': replicatedBytes!,
      if (totalBytes != null) 'totalBytes': totalBytes!,
    };