instance property

The default instance of EllaSaasFlutterPlatform to use.

Defaults to MethodChannelEllaSaasFlutter.

Implementation

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

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

Implementation

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