instance property

The default instance of CheckRootJailbreakPlatform to use.

Defaults to MethodChannelCheckRootJailbreak.

Implementation

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

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

Implementation

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