isLocaleSupported static method

bool isLocaleSupported(
  1. String locale
)

Checks if a locale is supported for digit conversion يتحقق من دعم لغة معينة لتحويل الأرقام

Implementation

static bool isLocaleSupported(String locale) {
  return _getNumeralsForLocale(locale) != null;
}