invoke

operator fun invoke(): Note

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

Return

The singleton instance of the Note.

Example:

// Using invoke() to retrieve the User instance
val note = Note() // Equivalent to RainbowSdk().note()

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