setGeolocatorConfig method
Edit the Geolocator configuration
Edits the Geolocator configuration.
Parameters:
-
GeolocatorConfig geolocatorConfig (required):
-
String uuidToken: Used for remote connections to device
Implementation
Future<void> setGeolocatorConfig(
GeolocatorConfig geolocatorConfig, {
String? uuidToken,
}) async {
final response = await setGeolocatorConfigWithHttpInfo(
geolocatorConfig,
uuidToken: uuidToken,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}