responseContentLength property

int? get responseContentLength

Implementation

int? get responseContentLength {
  return (response?.headers.toString().length ?? 0) +
      (response?.data.toString().length ?? 0);
}