toWorldGenerationJobErrorCode method
Implementation
WorldGenerationJobErrorCode toWorldGenerationJobErrorCode() {
switch (this) {
case 'InternalServiceError':
return WorldGenerationJobErrorCode.internalServiceError;
case 'LimitExceeded':
return WorldGenerationJobErrorCode.limitExceeded;
case 'ResourceNotFound':
return WorldGenerationJobErrorCode.resourceNotFound;
case 'RequestThrottled':
return WorldGenerationJobErrorCode.requestThrottled;
case 'InvalidInput':
return WorldGenerationJobErrorCode.invalidInput;
case 'AllWorldGenerationFailed':
return WorldGenerationJobErrorCode.allWorldGenerationFailed;
}
throw Exception('$this is not known in enum WorldGenerationJobErrorCode');
}