instance property
PlacePickerPlusPlatform
get
instance
The default instance of PlacePickerPlusPlatform to use.
Defaults to MethodChannelPlacePickerPlus.
Implementation
static PlacePickerPlusPlatform get instance => _instance;
set
instance
(PlacePickerPlusPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends PlacePickerPlusPlatform when they register themselves.
Implementation
static set instance(PlacePickerPlusPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}