getStripeSecretKey static method

String getStripeSecretKey({
  1. bool? isDebug,
})

Implementation

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