handleNextAction method
Implementation
@override
Future<PaymentIntent> handleNextAction(String paymentIntentClientSecret,
{String? returnURL}) async {
final stripe_js.PaymentIntentResponse response =
await _stripe.handleCardAction(paymentIntentClientSecret);
return response.paymentIntent!.parse();
}