deleteType method
Removes emblemType from the active emblem types and from all emblem types list
Implementation
@override
void deleteType(EmblemType emblemType) {
final foundEmblemType = getType(emblemType.getEmblemType());
_emblemTypes.remove(foundEmblemType);
_activeEmblemTypes.remove(foundEmblemType);
}