toEdition method

Edition toEdition()

Implementation

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