toRetryAction method
Implementation
RetryAction toRetryAction() {
switch (this) {
case 'RETRY':
return RetryAction.retry;
case 'EXIT':
return RetryAction.exit;
}
throw Exception('$this is not known in enum RetryAction');
}
RetryAction toRetryAction() {
switch (this) {
case 'RETRY':
return RetryAction.retry;
case 'EXIT':
return RetryAction.exit;
}
throw Exception('$this is not known in enum RetryAction');
}