Client constructor

Client({
  1. String? id,
  2. String? key,
  3. String? keyApi,
  4. String? accountId,
  5. String? applicationId,
  6. bool? disabled,
  7. String? name,
  8. String? nit,
  9. String? dv,
  10. String? responsabilityTypeId,
  11. String? regimeTypeId,
  12. String? organizationTypeId,
  13. String? municipalityId,
  14. String? address,
  15. String? phone,
  16. String? email,
  17. String? state,
  18. String? legalRepresentative,
  19. bool isTest = false,
})

Implementation

Client({
  this.id,
  this.key,
  this.keyApi,
  this.logo,
  this.accountId,
  this.applicationId,
  this.disabled,

  this.name,
  this.nit,
  this.dv,
  this.responsabilityTypeId,
  this.regimeTypeId,
  this.organizationTypeId,
  this.municipalityId,
  this.address,
  this.phone,
  this.email,
  this.state,
  this.legalRepresentative,
  this.isTest = false,
});