trMale property

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

Implementation

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