Person constructor

Person({
  1. required String id,
  2. Name? nmae,
  3. String? email,
  4. Phone? phone,
  5. String? birthdate,
  6. String? personalNumber,
  7. String? coordinationNumber,
  8. String? gdNumber,
  9. String? countryResidence,
  10. bool? isPep,
  11. bool? isSancyioned,
})

Implementation

Person({
  required this.id,
  this.nmae,
  this.email,
  this.phone,
  this.birthdate,
  this.personalNumber,
  this.coordinationNumber,
  this.gdNumber,
  this.countryResidence,
  this.isPep,
  this.isSancyioned,
});