byGenderEducationProfession method

PatientFilter byGenderEducationProfession(
  1. PatientGenderEnum gender, {
  2. String? education = null,
  3. String? profession = null,
})

Implementation

PatientFilter byGenderEducationProfession(PatientGenderEnum gender, {String? education = null, String? profession = null}) {
  this._byGenderEducationProfession = Tuple3(gender, education, profession);
  return this;
}