Usage
You can integrate with Checkout using Javascript, Dart or Angular Dart.
// add this into your html document in a head tag.
// <script src="https://checkout3.gpnpay.com/checkout.js"></script>
// then you can user Checkout class in your javascript code
var checkout = new Checkout(/* options */);// add this dependency into your pubspec.yaml
// checkout_web:
// path: ../checkout_web
// then you can user Checkout class in your dart code
final checkout = Checkout(/* options */);<!--
add this dependency into your pubspec.yaml
checkout_web:
path: ../checkout_web
then you can use CheckoutComponent in your angular code
-->
<checkout ...></checkout>Last updated