instance property

ZoomNativeSdkPlatform get instance

The default instance of ZoomNativeSdkPlatform to use.

Defaults to MethodChannelZoomNativeSdk.

Implementation

static ZoomNativeSdkPlatform get instance => _instance;
set instance (ZoomNativeSdkPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends ZoomNativeSdkPlatform when they register themselves.

Implementation

static set instance(ZoomNativeSdkPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}