mercado_pago 1.0.6 mercado_pago: ^1.0.6 copied to clipboard
Mercado Pago Library - A flutter plugin to integrate MercadoPago into flutter app
Mercado Pago Helper #
A flutter plugin to integrate MercadoPago into flutter app. So far I completed the basic functions which includes:
- New user
- New card
- Associate card with user
- Get all card by user
- Token with card
- Create payment
Usage #
Setup MercadoPago credentials first
import 'package:mercado_pago/mercado_pago.dart';
final credentials = MercadoCredentials(
publicKey: 'PUBLIC-KEY-TEST',
accessToken: 'ACCESS-TOKE-TEST'
);
This plugin is in very initial stage, I am using it in my personal app. Future plan is to complete all the remaining API.