isApplyCacheStrategy method

bool isApplyCacheStrategy(
  1. String method
)

Checks if the method supports cache strategies

Implementation

bool isApplyCacheStrategy(String method) {
  return !_isMultipart(method) && !_isSse(method);
}