CompanyDto constructor
CompanyDto({
- int? from,
- int? to,
- String? authorisationNr,
- Map<
String, String> vatNr = const {}, - String? europeanNr,
- String? denomination,
- String? legalForm,
- String? building,
- String? streetName,
- String? streetNum,
- String? postbox,
- String? postcode,
- String? city,
- String? countryCode,
- String? phone,
- String? language,
- 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,
});