stopWebRequestTimingWithSize abstract method

void stopWebRequestTimingWithSize(
  1. int responseCode,
  2. String? responseMessage,
  3. int requestSize,
  4. int responseSize,
)

Stops the measurement of the web request. This needs to be called after the request is executed. The responseCode, responseMessage, responseSize and requestSize will be transferred and shown in the web UI.

Implementation

void stopWebRequestTimingWithSize(
  int responseCode,
  String? responseMessage,
  int requestSize,
  int responseSize,
);