instance property

RedePosPlatform get instance

The default instance of RedePosPlatform to use.

Defaults to MethodChannelRedePos.

Implementation

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

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

Implementation

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