copyWith method
Implementation
PaymentsProviderStripe copyWith({
String? publishableKey,
bool? needCountry,
bool? needPostalCode,
bool? needCardholderName,
}) => PaymentsProviderStripe(
publishableKey: publishableKey ?? this.publishableKey,
needCountry: needCountry ?? this.needCountry,
needPostalCode: needPostalCode ?? this.needPostalCode,
needCardholderName: needCardholderName ?? this.needCardholderName,
);