toIndexEdition method

IndexEdition toIndexEdition()

Implementation

IndexEdition toIndexEdition() {
  switch (this) {
    case 'DEVELOPER_EDITION':
      return IndexEdition.developerEdition;
    case 'ENTERPRISE_EDITION':
      return IndexEdition.enterpriseEdition;
  }
  throw Exception('$this is not known in enum IndexEdition');
}