instance property

The default instance of FlLocationPlatform to use.

Defaults to MethodChannelFlLocation.

Implementation

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

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

Implementation

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