public void OnChangeCountry(int position) { XsollaCountry country = _countries.GetItemsList()[position]; dropDownContainer.SetActive(false); GetComponentInParent <PaymentListScreenController>().ChangeCountry(country.iso); }
public void OnChangeCountry(string key) { XsollaCountry country = _countries.GetItemByKey(key); dropDownContainer.SetActive(false); GetComponentInParent <PaymentListScreenController>().ChangeCountry(country.iso); }