instance property

The default instance of GoogleSignInPlatform to use.

Platform-specific plugins should override this with their own platform-specific class that extends GoogleSignInPlatform when they register themselves.

Defaults to MethodChannelGoogleSignIn.

Implementation

static GoogleSignInPlatform get instance => _instance;
void instance=(GoogleSignInPlatform instance)

Implementation

static set instance(GoogleSignInPlatform instance) {
  if (!instance.isMock) {
    PlatformInterface.verify(instance, _token);
  }
  _instance = instance;
}