DataleonConfig constructor
DataleonConfig({})
Implementation
DataleonConfig({
required this.sessionId,
required this.token,
this.accountTenant,
this.apiBaseUrl,
this.uploadBucket,
this.appVersion = '2.0.0',
this.initialLanguage,
this.customerAssetsBucket = 'yap-assets-customer',
}) : assert(
apiBaseUrl == null || apiBaseUrl.isEmpty || apiBaseUrl.startsWith('https://'),
'apiBaseUrl must use HTTPS',
);