Establishment constructor

Establishment({
  1. String? nit,
  2. String? name,
  3. String? address,
  4. String? phone,
  5. String? municipalityId,
  6. String? email,
  7. String? economicActivity,
  8. String? legalRepresentative,
  9. String? dv,
  10. String? organizationTypeId,
  11. String? regimeTypeId,
  12. String? responsabilityTypeId,
  13. bool isTest = false,
})

Implementation

Establishment({
  this.nit,
  this.name,
  this.address,
  this.phone,
  this.municipalityId,
  this.email,
  this.logo,
  this.economicActivity,
  this.legalRepresentative,

  this.dv,
  this.organizationTypeId,
  this.regimeTypeId,
  this.responsabilityTypeId,
  this.isTest = false,
});