TaxRegistrationCreateOptions constructor

const TaxRegistrationCreateOptions({
  1. required RegistrationActiveFrom activeFrom,
  2. required String country,
  3. required RegistrationCountryOptions countryOptions,
  4. List<String>? expand,
  5. DateTime? expiresAt,
})

Implementation

const TaxRegistrationCreateOptions({
  required this.activeFrom,
  required this.country,
  required this.countryOptions,
  this.expand,
  this.expiresAt,
});