instance property

KycPluginRcsPlatform get instance

The default instance of KycPluginRcsPlatform to use.

Defaults to MethodChannelKycPluginRcs.

Implementation

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

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

Implementation

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