toServiceNowBuildVersionType method
Implementation
ServiceNowBuildVersionType toServiceNowBuildVersionType() {
switch (this) {
case 'LONDON':
return ServiceNowBuildVersionType.london;
case 'OTHERS':
return ServiceNowBuildVersionType.others;
}
throw Exception('$this is not known in enum ServiceNowBuildVersionType');
}