toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (adbEnabled != null) 'adbEnabled': adbEnabled!,
      if (developmentSettingsEnabled != null)
        'developmentSettingsEnabled': developmentSettingsEnabled!,
      if (encryptionStatus != null) 'encryptionStatus': encryptionStatus!,
      if (isDeviceSecure != null) 'isDeviceSecure': isDeviceSecure!,
      if (isEncrypted != null) 'isEncrypted': isEncrypted!,
      if (unknownSourcesEnabled != null)
        'unknownSourcesEnabled': unknownSourcesEnabled!,
      if (verifyAppsEnabled != null) 'verifyAppsEnabled': verifyAppsEnabled!,
    };