Payment Methods
Integrate different payment methods in Razorpay Flutter Custom SDK.
You can use the Razorpay Flutter Custom SDK to integrate the supported payment methods on your Flutter app's Checkout form.
For card payments, method
should be specified as card
.
The sample code shown below allows the checkout to accept a card payment of RMĀ 299.35:
var options = {"key": key,"amount": 29935,"currency": "","contact": "+60123456789","email": "nur.aisyah@example.com","order_id": "order_EMBFqjDHEEn80l", // Generate order_id using Orders API,"description": "Fine T-Shirt""method": "card","card[name]": "Test User","card[number]": "card number","card[expiry_month]": 11,"card[expiry_year]": 30,"card[cvv]": <CVV>,"display_logo": "0"};_razorpay.submit(options);
Is this integration guide useful?
ON THIS PAGE