instance property

The default instance of RecaptchaEnterprisePlatform to use.

Defaults to MethodChannelRecaptchaEnterprise.

Implementation

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

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

Implementation

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