toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cpu = this.cpu;
final date = this.date;
final disk = this.disk;
final memory = this.memory;
final network = this.network;
return {
'cpu': ?cpu,
'date': ?date,
'disk': ?disk,
'memory': ?memory,
'network': ?network,
};
}