id property

int get id

Implementation

int get id {
  int hashCodeSum = 0;
  hashCodeSum += url.hashCode;
  hashCodeSum += method.hashCode;
  if (headers.isNotEmpty) {
    headers.forEach((key, value) {
      hashCodeSum += key.hashCode;
      hashCodeSum += value.hashCode;
    });
  }
  if (contentLength != null) {
    hashCodeSum += contentLength.hashCode;
  }

  return hashCodeSum.hashCode;
}