ActualOrganizationModel constructor

ActualOrganizationModel(
  1. {int? id,
  2. String? nitNumber,
  3. required String firstName,
  4. required String lastName,
  5. required String ciNumber,
  6. required String ciExtension,
  7. String? ciComplement,
  8. String? email,
  9. String? cellphone,
  10. String? password,
  11. required 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. required DateTime createdAt,
  23. DateTime? updatedAt,
  24. String? name}
)

Implementation

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