instance property

RfidPlatform get instance

The default instance of RfidPlatform to use.

Defaults to MethodChannelRfid.

Implementation

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

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

Implementation

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