AssetDirectory constructor

const AssetDirectory({
  1. required String name,
  2. required String path,
  3. required List<Asset> assets,
})

Creates a new AssetDirectory instance.

Implementation

const AssetDirectory({
  required this.name,
  required this.path,
  required this.assets,
});