deleteModemConfig method
Reset the modem to factory settings
Resets modem configuration to factory settings. If the reset fails, the entire proccess is rolled back.
Parameters:
- String uuidToken: Used for remote connections to device
Implementation
Future<void> deleteModemConfig({
String? uuidToken,
}) async {
final response = await deleteModemConfigWithHttpInfo(
uuidToken: uuidToken,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}