toBlueprintType method
Implementation
BlueprintType toBlueprintType() {
switch (this) {
case 'os':
return BlueprintType.os;
case 'app':
return BlueprintType.app;
}
throw Exception('$this is not known in enum BlueprintType');
}