getType method
Returns the corresponding emblemShape from all deities with type name
Implementation
@override
SvgWrapper getType(String name) {
return _emblemShapes.firstWhere(
(emblemShape) => emblemShape.name == name,
orElse: () => throw EmblemShapeNotFoundException(
"Emblem shape with name $name was not found"),
);
}