getSingleContactsInConversation

suspend fun getSingleContactsInConversation(    context: Context,     conversationId: Int,     @IntRange(from = 0) from: Int? = null,     @IntRange(from = 1) pageSize: Int? = null): List<STWSingleContact>?

Call this method to retrieve single recipients in the given conversation and it should be called only from a coroutine or another suspend function

Return

The single recipients STWSingleContact inside the given conversation

See also

Parameters

context

The application context

conversationId

The conversation ID

from

The offset of the first single contact starting from it will return contact list based on pageSize. Value should be >= 0

pageSize

The max number of contact record to be retrieved, 0 will return nothing. Value should be >= 1