toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cpuReports = this.cpuReports;
  final memoryReports = this.memoryReports;
  final modelReports = this.modelReports;
  final storageReports = this.storageReports;
  return {
    'cpuReports': ?cpuReports,
    'memoryReports': ?memoryReports,
    'modelReports': ?modelReports,
    'storageReports': ?storageReports,
  };
}