deleteLogMetric method
Deletes a logs-based metric.
Throws a http.ClientException if there were problems communicating with
the API service. Throws a ServiceException if the API method failed for
any reason.
Implementation
@override
Future<void> deleteLogMetric(DeleteLogMetricRequest request) async {
if (isClosed) throw StateError('Service is closed');
if (_deleteLogMetric case final deleteLogMetric?) {
return deleteLogMetric(request);
}
throw UnsupportedError('deleteLogMetric');
}