toIntegrationType method
Implementation
IntegrationType toIntegrationType() {
switch (this) {
case 'EVENT':
return IntegrationType.event;
}
throw Exception('$this is not known in enum IntegrationType');
}
IntegrationType toIntegrationType() {
switch (this) {
case 'EVENT':
return IntegrationType.event;
}
throw Exception('$this is not known in enum IntegrationType');
}