GoTrueApi constructor

GoTrueApi(
  1. String url, {
  2. Map<String, String>? headers,
  3. CookieOptions? cookieOptions,
  4. Client? httpClient,
})

Implementation

GoTrueApi(
  this.url, {
  Map<String, String>? headers,
  this.cookieOptions,
  Client? httpClient,
})  : headers = headers ?? {},
      _httpClient = httpClient;