toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ctsProfileMatch = this.ctsProfileMatch;
  final enabledUnknownSources = this.enabledUnknownSources;
  final hasPotentiallyHarmfulApps = this.hasPotentiallyHarmfulApps;
  final ownerProfileAccount = this.ownerProfileAccount;
  final ownershipPrivilege = this.ownershipPrivilege;
  final supportsWorkProfile = this.supportsWorkProfile;
  final verifiedBoot = this.verifiedBoot;
  final verifyAppsEnabled = this.verifyAppsEnabled;
  return {
    'ctsProfileMatch': ?ctsProfileMatch,
    'enabledUnknownSources': ?enabledUnknownSources,
    'hasPotentiallyHarmfulApps': ?hasPotentiallyHarmfulApps,
    'ownerProfileAccount': ?ownerProfileAccount,
    'ownershipPrivilege': ?ownershipPrivilege,
    'supportsWorkProfile': ?supportsWorkProfile,
    'verifiedBoot': ?verifiedBoot,
    'verifyAppsEnabled': ?verifyAppsEnabled,
  };
}