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