gaDeviceModelMetricItemsIdPropIdDelete method
Delete a device model metric item by ID
Parameters:
Implementation
Future<void> gaDeviceModelMetricItemsIdPropIdDelete(
String id,
String propId,
) async {
final response = await gaDeviceModelMetricItemsIdPropIdDeleteWithHttpInfo(
id,
propId,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}