instance property
DitoSdkPlatform
get
instance
The default instance of DitoSdkPlatform to use.
Defaults to MethodChannelDitoSdk.
Implementation
static DitoSdkPlatform get instance => _instance;
set
instance
(DitoSdkPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends DitoSdkPlatform when they register themselves.
Implementation
static set instance(DitoSdkPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}