uni_pay_web 1.0.0 copy "uni_pay_web: ^1.0.0" to clipboard
uni_pay_web: ^1.0.0 copied to clipboard

A library for making online payment by using Moyasar.

Payment Gateway Library by UNICODE Team #

A library for making online payment by using Moyasar

Features support #

Current supported methods #

  • CreateInvoice you can create Invoice by passing [amount , currency , description, expiredAt , successUrl ,backUrl ,metadata]
  • GetPayment you can get payment details with [id]

Getting started #

To use UniShipping in your Flutter project, follow these steps:

Installation #

  1. Add uni_pay_web to your pubspec.yaml file:
dependencies:
  uni_pay_web: latest_version
  1. Run flutter pub get to install the package.

3- Now You can call the methods:

// 1- Create Invoice
final createInvoiceRes = UniPayWeb.createInvoice(
  psk: 'YOUR-PUBLISHABLE-SECRET-KEY',
  dto: UniInvoiceDTO(
    amount: '100',
    currency: 'SAR',
    description: 'Test Description',
    expiredAt: 'expiredAt',
    successUrl: 'successUrl',
    backUrl: 'backUrl',
    metadata: {},
  ),
);

// 2- Get Payment Details
final getPaymentRes = UniPayWeb.getPayment(
  transactionId: 'TRANSACTION-ID',
  psk: 'YOUR-PUBLISHABLE-SECRET-KEY',
);

Contributing #

Contributions are welcome! If you would like to contribute, please fork the repository and submit a pull request.

License #

UniShipping is available under the MIT license. See the LICENSE file for more info.

2
likes
130
pub points
16%
popularity

Publisher

verified publisherunicodesolutions.co

A library for making online payment by using Moyasar.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

http

More

Packages that depend on uni_pay_web