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