Customer constructor

Customer({
  1. String? name,
  2. String? identificationTypeId,
  3. String? identificationNumber,
  4. String? dv,
  5. String? responsabilityTypeId,
  6. String? regimeTypeId,
  7. String? organizationTypeId,
  8. String? municipalityId,
  9. String? address,
  10. String? phone,
  11. String? email,
  12. String? state,
  13. String? commercialRegistration,
})

Implementation

Customer({
  super.name,
  super.identificationTypeId,
  super.identificationNumber,
  super.dv,
  super.responsabilityTypeId,
  super.regimeTypeId,
  super.organizationTypeId,
  super.municipalityId,
  super.address,
  super.phone,
  super.email,
  super.state,
  this.commercialRegistration,
});