CLLocationSourceInformation.pigeon_detached constructor

  1. @protected
CLLocationSourceInformation.pigeon_detached({
  1. BinaryMessenger? pigeon_binaryMessenger,
  2. PigeonInstanceManager? pigeon_instanceManager,
  3. required bool isProducedByAccessory,
  4. required bool isSimulatedBySoftware,
  5. void observeValue(
    1. NSObject pigeon_instance,
    2. String? keyPath,
    3. NSObject? object,
    4. Map<KeyValueChangeKey, Object?>? change,
    )?,
})

Constructs CLLocationSourceInformation without creating the associated native object.

This should only be used by subclasses created by this library or to create copies for an PigeonInstanceManager.

Implementation

@protected
CLLocationSourceInformation.pigeon_detached({
  super.pigeon_binaryMessenger,
  super.pigeon_instanceManager,
  required this.isProducedByAccessory,
  required this.isSimulatedBySoftware,
  super.observeValue,
}) : super.pigeon_detached();