toValue method
Implementation
String toValue() {
switch (this) {
case AccessStatus.enabled:
return 'ENABLED';
case AccessStatus.underChange:
return 'UNDER_CHANGE';
case AccessStatus.disabled:
return 'DISABLED';
}
}
String toValue() {
switch (this) {
case AccessStatus.enabled:
return 'ENABLED';
case AccessStatus.underChange:
return 'UNDER_CHANGE';
case AccessStatus.disabled:
return 'DISABLED';
}
}