pronouns property

String get pronouns

Implementation

String get pronouns {
  switch (this) {
    case Gender.male:
      return "(He/Him)";
    case Gender.female:
      return "(She/Her)";
    case Gender.other:
      return "(Other)";
  }
}