httpResponseCode property
int?
get
httpResponseCode
HttpResponse code of the request.
Implementation
int? get httpResponseCode => _delegate.httpResponseCode;
set
httpResponseCode
(int? httpResponseCode)
HttpResponse code of the request.
If the HttpMetric has already been stopped, returns immediately without taking action.
Implementation
set httpResponseCode(int? httpResponseCode) {
_delegate.httpResponseCode = httpResponseCode;
}