Created
February 24, 2024 12:10
-
-
Save ponnamkarthik/2b8e45ca7250ef22f87d983bfdf1a7f3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void _openCheckout() { | |
var options = { | |
'key': 'YOUR_RAZORPAY_API_KEY', | |
'amount': 2000, | |
'name': 'Example Store', | |
'description': 'Payment for your order', | |
'prefill': {'contact': '9876543210', 'email': '[email protected]'}, | |
}; | |
try { | |
razorpay.open(options); | |
} catch (e) { | |
print('Error: $e'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment