instance property

The default instance of AttestrFlowxPlatform to use.

Defaults to MethodChannelAttestrFlowx.

Implementation

static AttestrFlowxPlatform get instance => _instance;
void instance=(AttestrFlowxPlatform instance)

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

Implementation

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