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