CompanyDto constructor

CompanyDto({
  1. int? from,
  2. int? to,
  3. String? authorisationNr,
  4. Map<String, String> vatNr = const {},
  5. String? europeanNr,
  6. String? denomination,
  7. String? legalForm,
  8. String? building,
  9. String? streetName,
  10. String? streetNum,
  11. String? postbox,
  12. String? postcode,
  13. String? city,
  14. String? countryCode,
  15. String? phone,
  16. String? language,
  17. String? website,
})

Returns a new CompanyDto instance.

Implementation

CompanyDto({
  this.from,
  this.to,
  this.authorisationNr,
  this.vatNr = const {},
  this.europeanNr,
  this.denomination,
  this.legalForm,
  this.building,
  this.streetName,
  this.streetNum,
  this.postbox,
  this.postcode,
  this.city,
  this.countryCode,
  this.phone,
  this.language,
  this.website,
});