getStripeSecretKey static method
Implementation
static String getStripeSecretKey({bool? isDebug}) {
isDebug ??= kDebugMode; // Default to debug mode if not specified
return isDebug ? appProperties['stripeSecretTestKey'] : appProperties['stripeSecretLiveKey'];
}