PaymentsProviderStripe.fromJson constructor
Parse from a json
Implementation
factory PaymentsProviderStripe.fromJson(Map<String, dynamic> json) => PaymentsProviderStripe(
publishableKey: json['publishable_key'],
needCountry: json['need_country'],
needPostalCode: json['need_postal_code'],
needCardholderName: json['need_cardholder_name'],
);