cancelTarget method
@brief Method is used for removing current target points to where the routes were built.
Dart code snippet: @snippet route_manager_example.dart dart_RouteManager_cancelTarget
Implementation
@override
void cancelTarget() {
final _cancelTargetFfi = __lib.catchArgumentError(() => __lib.nativeLibrary.lookupFunction<
Void Function(Pointer<Void>, ),
void Function(Pointer<Void>, )
>('navigine_sdk_flutter_RouteManager_cancelTarget'));
final _handle = this.handle;
_cancelTargetFfi(_handle, );
}