instance property

The default instance of AutoTrackPlatform to use.

Defaults to MethodChannelAutoTrack.

Implementation

static AutoTrackPlatform get instance => _instance;
void instance=(AutoTrackPlatform instance)

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

Implementation

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