deleteType method
Removes guildType from the active guild types and from all guild types list
Implementation
@override
void deleteType(GuildType guildType) {
final foundGuildType = getType(guildType.getGuildType());
_guildTypes.remove(foundGuildType);
_activeGuildTypes.remove(foundGuildType);
}