isAutoResendable method
Implementation
bool isAutoResendable() {
if (errorCode == SendbirdError.connectionRequired ||
errorCode == SendbirdError.webSocketConnectionClosed ||
errorCode == SendbirdError.webSocketConnectionFailed ||
errorCode == SendbirdError.requestFailed || // Check
errorCode == SendbirdError.socketChannelFrozen) {
return true;
}
return false;
}