paymentSuccessfulAmount method
Payment success message with amount
In en, this message translates to: 'Payment successful! Amount: {currency} {amount}'
Implementation
@override
String paymentSuccessfulAmount(String currency, String amount) {
return 'Pagamento riuscito! Importo: $currency $amount';
}