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