Wether the headers are for browser.
headers
bool isBrowser(Map<String, String> headers) { final browserStructure = {'authorization', 'cookie'}; return browserStructure.every((key) => headers.containsKey(key)); }