toSourceType method
Implementation
SourceType toSourceType() {
switch (this) {
case 'Git':
return SourceType.git;
case 'Zip':
return SourceType.zip;
}
throw Exception('$this is not known in enum SourceType');
}
SourceType toSourceType() {
switch (this) {
case 'Git':
return SourceType.git;
case 'Zip':
return SourceType.zip;
}
throw Exception('$this is not known in enum SourceType');
}