toWebhookBuildType method
Implementation
WebhookBuildType toWebhookBuildType() {
switch (this) {
case 'BUILD':
return WebhookBuildType.build;
case 'BUILD_BATCH':
return WebhookBuildType.buildBatch;
}
throw Exception('$this is not known in enum WebhookBuildType');
}