CLGeocoder class

An object that displays interactive web content, such as for an in-app browser.

See https://developer.apple.com/documentation/webkit/wkwebview.

Constructors

CLGeocoder({BinaryMessenger? pigeon_binaryMessenger, PigeonInstanceManager? pigeon_instanceManager, void observeValue(NSObject pigeon_instance, String? keyPath, NSObject? object, Map<KeyValueChangeKey, Object?>? change)?})
Creates a CLGeocoder.localLocation.
factory
CLGeocoder.pigeon_detached({BinaryMessenger? pigeon_binaryMessenger, PigeonInstanceManager? pigeon_instanceManager, void observeValue(NSObject pigeon_instance, String? keyPath, NSObject? object, Map<KeyValueChangeKey, Object?>? change)?})
Constructs CLGeocoder without creating the associated native object.
CLGeocoder.pigeon_new({BinaryMessenger? pigeon_binaryMessenger, PigeonInstanceManager? pigeon_instanceManager, void observeValue(NSObject pigeon_instance, String? keyPath, NSObject? object, Map<KeyValueChangeKey, Object?>? change)?})
Creates a CLGeocoder.localLocation.

Properties

hashCode int
The hash code for this object.
no setterinherited
observeValue → void Function(NSObject pigeon_instance, String? keyPath, NSObject? object, Map<KeyValueChangeKey, Object?>? change)?
Informs the observing object when the value at the specified key path relative to the observed object has changed.
finalinherited
pigeon_binaryMessenger BinaryMessenger?
Sends and receives binary data across the Flutter platform barrier.
finalinherited
pigeon_instanceManager → PigeonInstanceManager
Maintains instances stored to communicate with native language objects.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addObserver(NSObject observer, String keyPath, List<KeyValueObservingOptions> options) Future<void>
Registers the observer object to receive KVO notifications for the key path relative to the object receiving this message.
inherited
geocodeAddressString(String address, Locale? locale) Future<List<CLPlacemark>?>
Submits a forward-geocoding requesting using the specified address string and locale information.
geocodePostalAddress(CNPostalAddress postalAddress, Locale? locale) Future<List<CLPlacemark>?>
Submits a forward-geocoding requesting using the specified locale and Contacts framework information.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pigeon_copy() CLGeocoder
Instantiates and returns a functionally identical object to oneself.
removeObserver(NSObject observer, String keyPath) Future<void>
Stops the observer object from receiving change notifications for the property specified by the key path relative to the object receiving this message.
inherited
reverseGeocodeLocation(CLLocation location, Locale? locale) Future<List<CLPlacemark>?>
Submits a reverse-geocoding request for the specified location.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

pigeon_setUpMessageHandlers({bool pigeon_clearHandlers = false, BinaryMessenger? pigeon_binaryMessenger, PigeonInstanceManager? pigeon_instanceManager, CLGeocoder pigeon_newInstance()?}) → void