AssetXConfig constructor

const AssetXConfig({
  1. required String destination,
  2. String? localDestination,
  3. CacheConfig? cache,
  4. List<SourceConfig>? sourcesInclude,
  5. List<SourceConfig>? sourcesExclude,
  6. List<String>? patternsInclude,
  7. List<String>? patternsExclude,
  8. Map<String, TypeConfig>? typeRegistry,
  9. Map<String, MapConfig>? mapRegistry,
})

Implementation

const AssetXConfig({
  required this.destination,
  this.localDestination,
  this.cache,
  this.sourcesInclude,
  this.sourcesExclude,
  this.patternsInclude,
  this.patternsExclude,
  this.typeRegistry,
  this.mapRegistry,
});