isApplyCacheStrategy method

bool isApplyCacheStrategy(
  1. String method
)

Implementation

bool isApplyCacheStrategy(String method) {
  return !isMultipart(method) && !isSse(method);
}