resetAnchor method
Resets anchor to default (center).
Example:
_userLocationLayer!.resetAnchor();
print("Anchor reset to default");
Implementation
@override
void resetAnchor() {
final _resetAnchorFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Void Function(Pointer<Void>, ),
void Function(Pointer<Void>, )
>('navigine_sdk_flutter_UserLocationLayer_resetAnchor'));
final _handle = this.handle;
_resetAnchorFfi(_handle, );
}