invoke

operator fun invoke(): Contacts

Calls the invoke operator to retrieve the singleton instance of the Contacts.

Return

The singleton instance of the Contacts.

Example:

// Using invoke() to retrieve the Contacts instance
val contacts = Contacts() // Equivalent to RainbowSdk().contacts()

// Accessing services or functionalities using the retrieved instance
contacts.someServiceMethod()