isLTR top-level property
bool
get
isLTR
Weather the current langage is LTR
Implementation
bool get isLTR => currentLanguage == null
? true
: currentLanguage?.textDirection == TextDirection.ltr;
Weather the current langage is LTR
bool get isLTR => currentLanguage == null
? true
: currentLanguage?.textDirection == TextDirection.ltr;