InvoiceParty constructor

InvoiceParty({
  1. required String name,
  2. required String street,
  3. required String postcode,
  4. required String city,
  5. String? countryCode,
  6. String? vatId,
  7. String? taxId,
  8. String taxIdSchemeId = 'FC',
  9. String? email,
})

Implementation

InvoiceParty({
  required this.name,
  required this.street,
  required this.postcode,
  required this.city,
  String? countryCode,
  this.vatId,
  this.taxId,
  this.taxIdSchemeId = 'FC',
  this.email,
}) : countryCode = countryCode ?? FacturSimpleConfig.defaultCountry;