toRetryAction method

RetryAction toRetryAction()

Implementation

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