diff --git a/stripe_platform_interface/lib/src/method_channel_stripe.dart b/stripe_platform_interface/lib/src/method_channel_stripe.dart index 00a943eb1..53ac7a10f 100644 --- a/stripe_platform_interface/lib/src/method_channel_stripe.dart +++ b/stripe_platform_interface/lib/src/method_channel_stripe.dart @@ -57,12 +57,6 @@ class MethodChannelStripe extends StripePlatform { ); } - @override - Future configure3dSecure(ThreeDSecureConfigurationParams params) { - //TODO: implement configure3dSecure - throw UnimplementedError(); - } - @override Future confirmApplePayPayment(String clientSecret) async { await _methodChannel.invokeMethod('confirmApplePayPayment', { diff --git a/stripe_platform_interface/lib/src/stripe_platform_interface.dart b/stripe_platform_interface/lib/src/stripe_platform_interface.dart index 49c417e36..cdabd6064 100644 --- a/stripe_platform_interface/lib/src/stripe_platform_interface.dart +++ b/stripe_platform_interface/lib/src/stripe_platform_interface.dart @@ -44,7 +44,6 @@ abstract class StripePlatform extends PlatformInterface { Future confirmPaymentMethod( String paymentIntentClientSecret, PaymentMethodParams params, [Map options = const {}]); - Future configure3dSecure(ThreeDSecureConfigurationParams params); Future isApplePaySupported() async => false; /// Configure the payment sheet using [SetupPaymentSheetParameters] as config.