Brick constructor

const Brick({
  1. required BrickLocation location,
  2. String? name,
})

Metadata for a brick template including the name and location.

Implementation

const Brick({required this.location, this.name});