instance property

The default instance of AzulEnvatoCheckerPlatform to use.

Defaults to MethodChannelAzulEnvatoChecker.

Implementation

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

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

Implementation

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