toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final adbEnabled = this.adbEnabled;
  final developmentSettingsEnabled = this.developmentSettingsEnabled;
  final encryptionStatus = this.encryptionStatus;
  final isDeviceSecure = this.isDeviceSecure;
  final isEncrypted = this.isEncrypted;
  final unknownSourcesEnabled = this.unknownSourcesEnabled;
  final verifyAppsEnabled = this.verifyAppsEnabled;
  return {
    'adbEnabled': ?adbEnabled,
    'developmentSettingsEnabled': ?developmentSettingsEnabled,
    'encryptionStatus': ?encryptionStatus,
    'isDeviceSecure': ?isDeviceSecure,
    'isEncrypted': ?isEncrypted,
    'unknownSourcesEnabled': ?unknownSourcesEnabled,
    'verifyAppsEnabled': ?verifyAppsEnabled,
  };
}