Returns all bricks belonging to category.
category
static List<BrickInfo> byCategory(String category) { return components.values .where((b) => b.category == category) .toList(growable: false); }