deleteType method
Removes governmentType from the active governmentTypes and from all governmentTypes lists
Implementation
@override
void deleteType(GovernmentType governmentType) {
final foundGovernmentType = getType(governmentType.getGovernmentType());
_governmentTypes.remove(foundGovernmentType);
_activeGovernmentTypes.remove(foundGovernmentType);
}