BellaClientOptions constructor
BellaClientOptions({})
Implementation
BellaClientOptions({
this.baseUrl = 'https://api.bella-baxter.io',
this.apiKey,
this.accessToken,
this.appClient,
this.connectTimeout = const Duration(seconds: 10),
this.receiveTimeout = const Duration(seconds: 30),
this.cache,
this.privateKey,
this.onWrappedDekReceived,
}) : assert(
(apiKey != null) != (accessToken != null),
'Provide exactly one of apiKey or accessToken.',
);