noCache method
Sets no-cache headers (convenience method)
Implementation
Response noCache() {
_headers.setCacheControl('no-cache, no-store, must-revalidate');
_headers.setHeader('Pragma', 'no-cache');
_headers.setExpires(DateTime.now());
return this;
}