toEdition method

Edition toEdition()

Implementation

Edition toEdition() {
  switch (this) {
    case 'STANDARD':
      return Edition.standard;
    case 'ENTERPRISE':
      return Edition.enterprise;
  }
  throw Exception('$this is not known in enum Edition');
}