instance property

The default instance of TbibSecureScreenPlatform to use.

Defaults to MethodChannelTbibSecureScreen.

Implementation

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

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

Implementation

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