instance property
TikiSdk
get
instance
The singleton instance of the TikiSdk.
Accessing this property always returns the same instance of the TikiSdk
.
This property provides a global point of access to the TikiSdk instance,
allowing it to be easily used throughout your app.
Implementation
static TikiSdk get instance {
_instance ??= TikiSdk._();
return _instance!;
}