toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final coreCountHistogram = this.coreCountHistogram;
  final memoryBytesHistogram = this.memoryBytesHistogram;
  final memoryUtilizationChart = this.memoryUtilizationChart;
  final operatingSystem = this.operatingSystem;
  final softwareInstances = this.softwareInstances;
  final storageBytesHistogram = this.storageBytesHistogram;
  final storageUtilizationChart = this.storageUtilizationChart;
  final totalAssets = this.totalAssets;
  final totalCores = this.totalCores;
  final totalMemoryBytes = this.totalMemoryBytes;
  final totalStorageBytes = this.totalStorageBytes;
  return {
    'coreCountHistogram': ?coreCountHistogram,
    'memoryBytesHistogram': ?memoryBytesHistogram,
    'memoryUtilizationChart': ?memoryUtilizationChart,
    'operatingSystem': ?operatingSystem,
    'softwareInstances': ?softwareInstances,
    'storageBytesHistogram': ?storageBytesHistogram,
    'storageUtilizationChart': ?storageUtilizationChart,
    'totalAssets': ?totalAssets,
    'totalCores': ?totalCores,
    'totalMemoryBytes': ?totalMemoryBytes,
    'totalStorageBytes': ?totalStorageBytes,
  };
}