deleteType method
Removes locationType from the active location types and from all location types list
Implementation
@override
void deleteType(LocationType locationType) {
final foundLocationType = getType(locationType.getLocationType());
_locationTypes.remove(foundLocationType);
_activeLocationTypes.remove(foundLocationType);
}