toTcpRetryPolicyEvent method

TcpRetryPolicyEvent toTcpRetryPolicyEvent()

Implementation

TcpRetryPolicyEvent toTcpRetryPolicyEvent() {
  switch (this) {
    case 'connection-error':
      return TcpRetryPolicyEvent.connectionError;
  }
  throw Exception('$this is not known in enum TcpRetryPolicyEvent');
}