isRTL static method

bool isRTL(
  1. Locale locale
)

Check if this locale is RTL

Implementation

static bool isRTL(Locale locale) {
  return isRtlLanguage(locale.languageCode);
}