callCashFressService method

Future callCashFressService(
  1. BuildContext context
)

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",
  );
}