When sending an attachment we call this method in android Kotlin
chat.rocket.core.RocketChatClient.uploadFile(roomId: kotlin.String, fileName: kotlin.String, mimeType: kotlin.String, msg: kotlin.String, description: kotlin.String, inputStreamProvider: () -> java.io.InputStream?): kotlin.Unit
and it will create two messages one with the attachment file and one with file description( msg: kotlin.String)
is there a way to just send the attachment only no file description( msg: kotlin.String)?
so only one message will send, only the attachment file