CountrySpec constructor

CountrySpec({
  1. String? id,
  2. String? object,
  3. String? defaultCurrency,
  4. Map<String, dynamic>? supportedBankAccountCurrencies,
  5. List<String>? supportedPaymentCurrencies,
  6. List<String>? supportedPaymentMethods,
  7. List<String>? supportedTransferCountries,
  8. VerificationFields? verificationFields,
})

Implementation

CountrySpec(
    {this.id,
    this.object,
    this.defaultCurrency,
    this.supportedBankAccountCurrencies,
    this.supportedPaymentCurrencies,
    this.supportedPaymentMethods,
    this.supportedTransferCountries,
    this.verificationFields});