instance property

SensfrxFlutterPlatform get instance

The default i`nstance of SensfrxFlutterPlatform to use.

Defaults to MethodChannelAuthsafeFlutter.

Implementation

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

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

Implementation

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