instance property

AbrevvaNfcPlatform get instance

The default instance of AbrevvaNfcPlatformPlatform to use.

Defaults to MethodChannelAbrevvaNfcPlatform.

Implementation

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

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

Implementation

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