instance property

GeoInfoPlatform get instance

The default instance of GeoInfoPlatform to use.

Defaults to MethodChannelGeoInfo.

Implementation

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

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

Implementation

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