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