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