toValue method
Implementation
String toValue() {
switch (this) {
case LicenseType.aws:
return 'AWS';
case LicenseType.byol:
return 'BYOL';
}
}
String toValue() {
switch (this) {
case LicenseType.aws:
return 'AWS';
case LicenseType.byol:
return 'BYOL';
}
}