navigateToPaymentPendingSuccess method
void
navigateToPaymentPendingSuccess()
Implementation
void navigateToPaymentPendingSuccess() {
paymentmodestatus = 0;
Get.to(
() => WalletSuccessScreen(
amount: selectedAmount.toString(),
currency: currentWalletCurrency.value,
transactionId: "", // not using
isOrderPending: true,
),
);
}