invoke

operator fun invoke(): Favorites

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

Return

The singleton instance of the Favorites.

Example:

// Using invoke() to retrieve the CallLogs instance
val favorites = Favorites() // Equivalent to RainbowSdk().favorites()

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