Organization constructor

Organization(
  1. {int? id,
  2. String? nitNumber,
  3. String? firstName,
  4. String? lastName,
  5. String? ciNumber,
  6. String? ciExtension,
  7. String? ciComplement,
  8. String? email,
  9. String? cellphone,
  10. String? password,
  11. String? type,
  12. dynamic calculator,
  13. String? legalRepresentativeFirstName,
  14. String? legalRepresentativeLastName,
  15. String? legalRepresentativeCiNumber,
  16. String? legalRepresentativeCiExtension,
  17. String? legalRepresentativeCiComplement,
  18. String? legalRepresentativeEmail,
  19. String? legalRepresentativeCellphone,
  20. dynamic rate,
  21. bool? active,
  22. DateTime? createdAt,
  23. DateTime? updatedAt}
)

Implementation

Organization({
  this.id,
  this.nitNumber,
  this.firstName,
  this.lastName,
  this.ciNumber,
  this.ciExtension,
  this.ciComplement,
  this.email,
  this.cellphone,
  this.password,
  this.type,
  this.calculator,
  this.legalRepresentativeFirstName,
  this.legalRepresentativeLastName,
  this.legalRepresentativeCiNumber,
  this.legalRepresentativeCiExtension,
  this.legalRepresentativeCiComplement,
  this.legalRepresentativeEmail,
  this.legalRepresentativeCellphone,
  this.rate,
  this.active,
  this.createdAt,
  this.updatedAt,
});