CachedBrick constructor

const CachedBrick({
  1. required Brick brick,
  2. required String path,
})

A cached brick is an object which includes a resolved brick (strict location) and the local path of the brick.

Implementation

const CachedBrick({required this.brick, required this.path});