matchTargetNeedsKey function

bool matchTargetNeedsKey(
  1. InfospectBreakpointMatchTarget target
)

Implementation

bool matchTargetNeedsKey(InfospectBreakpointMatchTarget target) {
  return target != InfospectBreakpointMatchTarget.requestBodyText &&
      target != InfospectBreakpointMatchTarget.responseBodyText &&
      target != InfospectBreakpointMatchTarget.responseStatus;
}