instance property

The default instance of SocialLoginPluginPlatform to use.

Defaults to MethodChannelSocialLoginPlugin.

Implementation

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

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

Implementation

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