deleteGeolocatorConfig method

Future<void> deleteGeolocatorConfig({
  1. String? uuidToken,
})

Delete the Geolocator configuration

Deletes the Geolocator configuration.

Parameters:

  • String uuidToken: Used for remote connections to device

Implementation

Future<void> deleteGeolocatorConfig({
  String? uuidToken,
}) async {
  final response = await deleteGeolocatorConfigWithHttpInfo(
    uuidToken: uuidToken,
  );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}