PaymentsProviderStripe constructor

const PaymentsProviderStripe({
  1. required String publishableKey,
  2. required bool needCountry,
  3. required bool needPostalCode,
  4. required bool needCardholderName,
})

Stripe payment provider

Implementation

const PaymentsProviderStripe({
  required this.publishableKey,
  required this.needCountry,
  required this.needPostalCode,
  required this.needCardholderName,
});