AssetType constructor

AssetType({
  1. required String rootPath,
  2. required String path,
  3. required Set<String> flavors,
  4. required Set<String> transformers,
  5. bool isThemed = false,
})

Implementation

AssetType({
  required this.rootPath,
  required this.path,
  required this.flavors,
  required this.transformers,
  this.isThemed = false,
});