toRepoUpgradeOnBoot method
Implementation
RepoUpgradeOnBoot toRepoUpgradeOnBoot() {
switch (this) {
case 'SECURITY':
return RepoUpgradeOnBoot.security;
case 'NONE':
return RepoUpgradeOnBoot.none;
}
throw Exception('$this is not known in enum RepoUpgradeOnBoot');
}