CountrySpec constructor
const
CountrySpec({
- required String defaultCurrency,
- required String id,
- required Map<
String, List< supportedBankAccountCurrencies,String> > - required List<
String> supportedPaymentCurrencies, - required List<
String> supportedPaymentMethods, - required List<
String> supportedTransferCountries, - required CountrySpecVerificationFields verificationFields,
CountrySpec
Stripe needs to collect certain pieces of information about each account created. These requirements can differ depending on the account's country. The Country Specs API makes these rules available to your integration. You can also view the information from this API call as [an online guide](/docs/connect/required-verification-information).
Implementation
const CountrySpec({
required this.defaultCurrency,
required this.id,
required this.supportedBankAccountCurrencies,
required this.supportedPaymentCurrencies,
required this.supportedPaymentMethods,
required this.supportedTransferCountries,
required this.verificationFields,
});