instance property

The default instance of PinterestEmbedPluginPlatform to use.

Defaults to MethodChannelPinterestEmbedPlugin.

Implementation

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

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

Implementation

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