Configuration constructor
Configuration({
- String host = "",
- String api = "",
- String cdn = "",
- String customerPlaceCode = "",
- String environment = "",
- bool? saveLogs,
- bool? showLogs,
- VersionConfiguration? version,
- StorageHandler? storageHandler,
- PWA? pwa,
- Loan? loan,
- Store? store,
- PurchaseInfo? purchaseInfo,
Implementation
Configuration({
this.host = "",
this.api = "",
this.cdn = "",
this.customerPlaceCode = "",
this.environment = "",
this.saveLogs,
this.showLogs,
this.version,
this.storageHandler,
PWA? pwa,
Loan? loan,
Store? store,
PurchaseInfo? purchaseInfo,
}) : pwa = pwa ?? PWA(),
loan = loan ?? Loan(),
store = store ?? Store(),
purchaseInfo = purchaseInfo ?? PurchaseInfo();