commonPronouns property
Implementation
List<String> get commonPronouns {
switch (this) {
case male:
return ['he/him', 'he/they'];
case female:
return ['she/her', 'she/they'];
case nonBinary:
return ['they/them', 'xe/xir', 'ze/hir'];
case preferNotToSay:
return ['they/them'];
case other:
return ['they/them'];
}
}