instance property

Singleton instance to the platform

Implementation

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

Sets a different value for instance.

This should only be used in tests, if at all.

Implementation

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