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