Configuration constructor

Configuration({
  1. String? clientId,
  2. String? clientSecret,
  3. String? basePath,
  4. String? tokenUrl,
  5. String? accessToken,
})

Constructor

Implementation

Configuration({
  this.clientId,
  this.clientSecret,
  String? basePath,
  String? tokenUrl,
  this.accessToken,
}) {
  this.basePath = basePath ?? DEFAULT_BASE_PATH;
  this.tokenUrl = tokenUrl ?? DEFAULT_TOKEN_URL;
}