toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final domain = this.domain;
final installedApps = this.installedApps;
final lastBootTime = this.lastBootTime;
final machineName = this.machineName;
final network = this.network;
final openFileList = this.openFileList;
final processes = this.processes;
final services = this.services;
return {
'domain': ?domain,
'installedApps': ?installedApps,
'lastBootTime': ?lastBootTime,
'machineName': ?machineName,
'network': ?network,
'openFileList': ?openFileList,
'processes': ?processes,
'services': ?services,
};
}