callPayStackService method

Future callPayStackService(
  1. BuildContext context
)

Implementation

Future callPayStackService(BuildContext context) async {
  await IncodesPaymentServices.payStackPayment(
    context: context,
    secretKey: "sk_test_82ab2cf5ee273c492e97ffbc9230d32f697d8877",
    customerEmail: "testuser@gmail.com",
    amount: 20000, // ₦200
    currency: "NGN",
  );
}