Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove configure3dSecure method #54

Merged
merged 1 commit into from
May 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions stripe_platform_interface/lib/src/method_channel_stripe.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,6 @@ class MethodChannelStripe extends StripePlatform {
);
}

@override
Future<void> configure3dSecure(ThreeDSecureConfigurationParams params) {
//TODO: implement configure3dSecure
throw UnimplementedError();
}

@override
Future<void> confirmApplePayPayment(String clientSecret) async {
await _methodChannel.invokeMethod('confirmApplePayPayment', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ abstract class StripePlatform extends PlatformInterface {
Future<PaymentIntent> confirmPaymentMethod(
String paymentIntentClientSecret, PaymentMethodParams params,
[Map<String, String> options = const {}]);
Future<void> configure3dSecure(ThreeDSecureConfigurationParams params);
Future<bool> isApplePaySupported() async => false;

/// Configure the payment sheet using [SetupPaymentSheetParameters] as config.
Expand Down