toIntegrationType method

IntegrationType toIntegrationType()

Implementation

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