paystation_ps 0.0.5 paystation_ps: ^0.0.5 copied to clipboard
A Easy Way to add PaymentGateway for Bangladesh.
Description: The flutter_paystation package allows Flutter developers to seamlessly integrate Paystation payment functionality into their mobile applications. With just a few lines of code, users can incorporate a secure and reliable payment link generation feature within their app.
Features:
Easy Integration: Simple API for quick and straightforward integration.
Parameterized Configuration: Configure payment details using parameters such as amount, currency, and merchant information.
Secure Transactions: Utilizes Paystation for secure and PCI-compliant payment processing.
Payment Link Generation: Generates payment links based on provided parameters.
Customizable UI: Offers options to customize the user interface based on the app's design guidelines.
know whether this package might be useful for them.
Getting started #
- Register as merchant in paystation. link - "https://www.paystation.com.bd/"
- After successful registration you will get store_name and store_pass in your email from PayStation.
- Now add the package paystation_ps in your yaml file.
- Provide all the required parameter in PsPaymentButton Class.
Usage #
PsPaymentButton(
storeName: "Store name that you got from PayStation in email",
storePass:"Store name that you got from PayStation in email",
invoiceNumber:"Create a random number",
currency:"BDT",
paymentAmount:"200",
reference:"some referance",
custName:"Customer name",
custPhone:"customer phone",
custEmail:"customer email",
custAddress:"ccustomer address",
callbackUrl:"your website url",
buttonColor: Colors.green,
textColor: Colors.white,
)