ClientOptions constructor

const ClientOptions({
  1. bool enableDebugLogging = false,
  2. int timeoutSeconds = 30,
  3. bool autoRefreshToken = true,
})

Creates a new ClientOptions instance.

Implementation

const ClientOptions({
  this.enableDebugLogging = false,
  this.timeoutSeconds = 30,
  this.autoRefreshToken = true,
});