CLLocationSourceInformation class

Information about the source that provides a location.

See https://developer.apple.com/documentation/corelocation/cllocationsourceinformation

Constructors

CLLocationSourceInformation.pigeon_detached({BinaryMessenger? pigeon_binaryMessenger, PigeonInstanceManager? pigeon_instanceManager, required bool isProducedByAccessory, required bool isSimulatedBySoftware, void observeValue(NSObject pigeon_instance, String? keyPath, NSObject? object, Map<KeyValueChangeKey, Object?>? change)?})
Constructs CLLocationSourceInformation without creating the associated native object.

Properties

hashCode int
The hash code for this object.
no setterinherited
isProducedByAccessory bool
A Boolean value that indicates whether the system receives the location from an external accessory.
final
isSimulatedBySoftware bool
A Boolean value that indicates whether the system generates the location using on-device software simulation.
final
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
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
pigeon_copy() CLLocationSourceInformation
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
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, CLLocationSourceInformation pigeon_newInstance(bool isProducedByAccessory, bool isSimulatedBySoftware)?}) → void