toValue method
Implementation
String toValue() {
switch (this) {
case RetryAction.retry:
return 'RETRY';
case RetryAction.exit:
return 'EXIT';
}
}
String toValue() {
switch (this) {
case RetryAction.retry:
return 'RETRY';
case RetryAction.exit:
return 'EXIT';
}
}