epayco_dart 0.0.6
epayco_dart: ^0.0.6 copied to clipboard
Epayco APIfy wrapper for dart.
epayco_dart 🚧 #
A wrapper for the ePayco web api built on APIfy #
- Para inicializar el servicio Disponer del PUBLIC_KEY y PRIVATE_KEY de la cuenta de ePayco (Lo encuentras en Dashboard > Checkout > Configuración > Llaves Secretas).
final EPayco _epaycoClient = EPayco.instance.configure(
privateKey: '<your-private-key>',
publicKey: '<your-public-key>',
);
Enderson Vizcaino