From 4a590cf34fc802ed46bf0d62871d71e6b2f7e86f Mon Sep 17 00:00:00 2001 From: Marco Lettieri Date: Mon, 26 Feb 2024 14:33:38 +0100 Subject: [PATCH] Fix handleNextActionForSetup (#1630) Co-authored-by: jonasbark --- .../lib/src/method_channel_stripe.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/stripe_platform_interface/lib/src/method_channel_stripe.dart b/packages/stripe_platform_interface/lib/src/method_channel_stripe.dart index 00c8eb582..25185c777 100644 --- a/packages/stripe_platform_interface/lib/src/method_channel_stripe.dart +++ b/packages/stripe_platform_interface/lib/src/method_channel_stripe.dart @@ -155,7 +155,7 @@ class MethodChannelStripe extends StripePlatform { String setupIntentClientSecret, {String? returnURL}) async { final result = await _methodChannel - .invokeMapMethod('handleNextAction', { + .invokeMapMethod('handleNextActionForSetup', { 'setupIntentClientSecret': setupIntentClientSecret, if (_platformIsIos) 'returnURL': returnURL, });