instance property
AdmobPluginPlatform
get
instance
The default instance of AdmobPluginPlatform to use.
Defaults to MethodChannelAdmobPlugin.
Implementation
static AdmobPluginPlatform get instance => _instance;
set
instance
(AdmobPluginPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends AdmobPluginPlatform when they register themselves.
Implementation
static set instance(AdmobPluginPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}