value property
Gets the enumeration value as int. return The value.
Implementation
int get value {
switch (this) {
case LicenseType.classic:
return 1;
case LicenseType.trial:
return 2;
case LicenseType.online:
return 3;
}
}