CLLocationCoordinate2D.pigeon_detached constructor

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

Constructs CLLocationCoordinate2D 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
CLLocationCoordinate2D.pigeon_detached({
  super.pigeon_binaryMessenger,
  super.pigeon_instanceManager,
  required this.latitude,
  required this.longitude,
  super.observeValue,
}) : super.pigeon_detached();