liqpay 0.0.1+4 copy "liqpay: ^0.0.1+4" to clipboard
liqpay: ^0.0.1+4 copied to clipboard

LiqPay payment service wrapper library to be used on a client or server side dart.

SUPER EARLY DEVELOPMENT STAGE, USE WITH CAUTION! #

LiqPay #

pub package

LiqPay payment service wrapper library to be used on a client or server side dart.

Features #

Package has minimum number of features

  • Form LiqPay orders with direct card information
  • Form LiqPay orders with server callback passed

Usage #

final liqPay = LiqPay("public_liqpay_key", "private_liqpay_key");
final number = "4242424242424242";
final expirationMonth = "12";
final expirationYear = "99";
final cvv = "000";
final card = LiqPayCard(number, expirationMonth, expirationDate, cvv);
final order = LiqPayOrder(const Uuid().v4(), 1, 'Test', card: card, action: LiqPayAction.pay);

await liqPay.purchase(order);

Additional information #

More documentation can be found on LiqPay Official Website

1
likes
140
pub points
69%
popularity

Publisher

verified publisherolegnovosad.com

LiqPay payment service wrapper library to be used on a client or server side dart.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

crypto, http, http_interceptor

More

Packages that depend on liqpay