instance property

The default instance of NativeGoogleadsPlatform to use.

Defaults to MethodChannelNativeGoogleads.

Implementation

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

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

Implementation

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