showCurrencySelectionDialog method

Future<void> showCurrencySelectionDialog()

Implementation

Future<void> showCurrencySelectionDialog() async {
  CurrencySelectionDialog.show(
    height: 540,
    currencyList: currenciesList.value,
    title: 'Select a currency from the list',
    onCurrencySelected: (currency) {
      selectedCryptoCurrency.value = currency;
      verifyPayment();
    },
  );
}