instance property

AntifakegpsPlatform get instance

The default instance of AntifakegpsPlatform to use.

Defaults to MethodChannelAntifakegps.

Implementation

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

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

Implementation

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