toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final applicationReportingSettings = this.applicationReportingSettings;
final applicationReportsEnabled = this.applicationReportsEnabled;
final commonCriteriaModeEnabled = this.commonCriteriaModeEnabled;
final defaultApplicationInfoReportingEnabled =
this.defaultApplicationInfoReportingEnabled;
final deviceSettingsEnabled = this.deviceSettingsEnabled;
final displayInfoEnabled = this.displayInfoEnabled;
final hardwareStatusEnabled = this.hardwareStatusEnabled;
final memoryInfoEnabled = this.memoryInfoEnabled;
final networkInfoEnabled = this.networkInfoEnabled;
final powerManagementEventsEnabled = this.powerManagementEventsEnabled;
final softwareInfoEnabled = this.softwareInfoEnabled;
final systemPropertiesEnabled = this.systemPropertiesEnabled;
return {
'applicationReportingSettings': ?applicationReportingSettings,
'applicationReportsEnabled': ?applicationReportsEnabled,
'commonCriteriaModeEnabled': ?commonCriteriaModeEnabled,
'defaultApplicationInfoReportingEnabled':
?defaultApplicationInfoReportingEnabled,
'deviceSettingsEnabled': ?deviceSettingsEnabled,
'displayInfoEnabled': ?displayInfoEnabled,
'hardwareStatusEnabled': ?hardwareStatusEnabled,
'memoryInfoEnabled': ?memoryInfoEnabled,
'networkInfoEnabled': ?networkInfoEnabled,
'powerManagementEventsEnabled': ?powerManagementEventsEnabled,
'softwareInfoEnabled': ?softwareInfoEnabled,
'systemPropertiesEnabled': ?systemPropertiesEnabled,
};
}