static Shape find(String name) { return Shape.values.firstWhere((shape) => shape.name == name, orElse: () => Shape.RECT_FILL); }