get Single Contacts In Conversation
suspend fun getSingleContactsInConversation( context: Context, conversationId: Int, @IntRange(from = 0 ) from: Int? = null, @IntRange(from = 1 ) pageSize: Int? = null): List<STWSingleContact>?
Content copied to clipboard
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
conversation Id
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
page Size
The max number of contact record to be retrieved, 0 will return nothing. Value should be >= 1