toConfigurationType method

ConfigurationType toConfigurationType()

Implementation

ConfigurationType toConfigurationType() {
  switch (this) {
    case 'DEFAULT':
      return ConfigurationType.$default;
    case 'CUSTOM':
      return ConfigurationType.custom;
  }
  throw Exception('$this is not known in enum ConfigurationType');
}