instance property

Algo360pfmPlatform get instance

The default instance of Algo360pfmPlatform to use.

Defaults to MethodChannelAlgo360pfm.

Implementation

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

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

Implementation

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