LocalazyCdnManager constructor

LocalazyCdnManager({
  1. required String cacheFolder,
  2. required String cdnId,
  3. required String getFileName(
    1. String locale,
    2. String flavor
    ),
  4. LocalazyLocale customFileSearch(
    1. LocalazyConfig config
    )?,
  5. Duration configCacheDuration = const Duration(days: 1),
})

Construct a localazy CDN manage for the localization files

Implementation

LocalazyCdnManager({
  required this.cacheFolder,
  required this.cdnId,
  required this.getFileName,
  this.customFileSearch,
  this.configCacheDuration = const Duration(days: 1),
});