instance property

GifyPlatform get instance

The default instance of GifyPlatform to use.

Defaults to MethodChannelGify.

Implementation

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

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

Implementation

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