Person constructor

Person({
  1. required String matricule,
  2. required String name,
  3. String? uniteOP,
  4. String equipe = "",
  5. String? image,
})

Implementation

Person({required this.matricule,required this.name,this.uniteOP,this.equipe="",this.image});