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