cache method

Response cache(
  1. String value
)

Sets cache control headers (convenience method)

Implementation

Response cache(String value) {
  _headers.setCacheControl(value);
  return this;
}