deleteBluetoothConfig method
Reset the Bluetooth to factory settings
Resets Bluetooth configuration to factory settings.
Parameters:
- String uuidToken: Used for remote connections to device
Implementation
Future<void> deleteBluetoothConfig({
String? uuidToken,
}) async {
final response = await deleteBluetoothConfigWithHttpInfo(
uuidToken: uuidToken,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}