getContacts

suspend fun getContacts(    context: Context,     phoneNumbers: List<String>,     @IntRange(from = 0) from: Int,     @IntRange(from = 1) pageSize: Int): List<STWSingleContact>?

Get contacts list based on the phone number list

Parameters

context

The application context

phoneNumbers

The phone number list

from

The offset of the first 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