invoke

operator fun invoke(): Tasks

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

Return

The singleton instance of the Tasks.

Example:

// Using invoke() to retrieve the Tasks instance
val tasks = Tasks() // Equivalent to RainbowSdk().tasks()

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