trFemale property

String trFemale
  • translate a text AND use the female gender
  • if there is error will use the config notFoundGender

Implementation

String get trFemale =>
    ExtractedData.parse(key: this, translations: AppLang.translations)
        .toGender(Gender.female) ??
    AppLang.config.notFoundGender(this, Gender.female);