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