init method

Future init()

Implementation

Future init() async {
  if (html.window.localStorage.keys.contains('cookieFallback')) {
    addHeader('x-fallback-cookies',
        html.window.localStorage['cookieFallback'] ?? '');
  }
  _httpClient.withCredentials = true;
}