isLTR top-level property

bool isLTR

Weather the current langage is LTR

Implementation

bool get isLTR => currentLanguage == null
    ? true
    : currentLanguage?.textDirection == TextDirection.ltr;