instance property

The default instance of WhatsappStickersExporterPlatform to use.

Defaults to MethodChannelWhatsappStickersExporter.

Implementation

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

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

Implementation

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