Skip to content

Commit e54eef9

Browse files
fix: add missing param to method channel (#2181)
1 parent 83c3a20 commit e54eef9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/stripe/lib/src/stripe.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,10 @@ class Stripe {
619619
CollectBankAccountTokenParams? params,
620620
}) async {
621621
try {
622-
return _platform.collectBankAccountToken(clientSecret: clientSecret);
622+
return _platform.collectBankAccountToken(
623+
clientSecret: clientSecret,
624+
params: params,
625+
);
623626
} on StripeError {
624627
rethrow;
625628
}

0 commit comments

Comments
 (0)