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