callStripeService method

Future callStripeService()

Implementation

Future callStripeService() async {
  await IncodesPaymentServices.stripePayment(
    amount: 500,
    currency: "USD",
    description: "Test Order Payment",
    isTest: true,
    merchantCountryCode: "IN",
    merchantDisplayName: "Incodes Payments",
    publishableKey: "enter your publishableKey",
    secretKey: "enter your secretKey",
  );
}