toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accountTypesWithManagementDisabled =
this.accountTypesWithManagementDisabled;
final bluetoothSharing = this.bluetoothSharing;
final cameraDisabled = this.cameraDisabled;
final maxDaysWithWorkOff = this.maxDaysWithWorkOff;
final personalApplications = this.personalApplications;
final personalPlayStoreMode = this.personalPlayStoreMode;
final privateSpacePolicy = this.privateSpacePolicy;
final screenCaptureDisabled = this.screenCaptureDisabled;
return {
'accountTypesWithManagementDisabled': ?accountTypesWithManagementDisabled,
'bluetoothSharing': ?bluetoothSharing,
'cameraDisabled': ?cameraDisabled,
'maxDaysWithWorkOff': ?maxDaysWithWorkOff,
'personalApplications': ?personalApplications,
'personalPlayStoreMode': ?personalPlayStoreMode,
'privateSpacePolicy': ?privateSpacePolicy,
'screenCaptureDisabled': ?screenCaptureDisabled,
};
}