IdentificationMatch constructor

IdentificationMatch({
  1. required bool name,
  2. required bool gender,
  3. required bool address,
  4. required bool dateOfBirth,
})

Implementation

IdentificationMatch({
  required this.name,
  required this.gender,
  required this.address,
  required this.dateOfBirth,
});