instance property

ZstandardPlatform get instance

The default instance of ZstandardPlatform to use.

Defaults to MethodChannelZstandardPlatform.

Implementation

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

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

Implementation

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