resendFileMessage

fun resendFileMessage(fileMessage: FileMessage, file: File?, handler: FileMessageHandler?)

Deprecated

`file` parameter is not needed as the SDK keeps the original file object set when the file message was sent

Replace with

resendMessage(fileMessage, handler)

Resends a file with given file information.

Since

3.0.99

Parameters

fileMessage

Failed fileMessage.

file

File to resend. If there is a file url in fileMessage, this will be ignored.

handler

Callback handler.


Deprecated

`file` parameter is not needed as the SDK keeps the original file object set when the file message was sent

Replace with

resendMessage(fileMessage, handler)

Resends a file with given file information and gets callback for uploading progress.

Since

3.0.99

Parameters

fileMessage

Failed file message.

file

File to resend. If there is a file url in fileMessage, this will be ignored.

handler

Callback handler.