callCashFressService method
Implementation
Future callCashFressService(BuildContext context) async {
await IncodesPaymentServices.cashFreePayment(
context: context,
clientId: "enter your clientId",
clientSecret: "enter your clientSecret",
amount: 1.0,
currency: "INR",
customerName: "John",
customerEmail: "john@example.com",
customerPhone: "9876543210",
paymentGatewayName: "Cashfree",
);
}