getType method
Returns the corresponding race from all races called name
Implementation
@override
Race getType(String name) {
return _races.firstWhere(
(race) => race.getName() == name,
orElse: () =>
throw RaceNotFoundException("Race with name $name was not found"),
);
}