ActualOrganizationModel constructor
ActualOrganizationModel(- {int? id,
- String? nitNumber,
- required String firstName,
- required String lastName,
- required String ciNumber,
- required String ciExtension,
- String? ciComplement,
- String? email,
- String? cellphone,
- String? password,
- required String type,
- dynamic calculator,
- String? legalRepresentativeFirstName,
- String? legalRepresentativeLastName,
- String? legalRepresentativeCiNumber,
- String? legalRepresentativeCiExtension,
- String? legalRepresentativeCiComplement,
- String? legalRepresentativeEmail,
- String? legalRepresentativeCellphone,
- dynamic rate,
- bool? active,
- required DateTime createdAt,
- DateTime? updatedAt,
- 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,
});