toValue method
Implementation
String toValue() {
switch (this) {
case License.basic:
return 'Basic';
case License.plus:
return 'Plus';
case License.pro:
return 'Pro';
case License.proTrial:
return 'ProTrial';
}
}