getSampleDigits static method
Gets sample digits for a specific locale (0-9) يحصل على عينة من الأرقام للغة محددة (0-9)
Implementation
static String getSampleDigits(String locale) {
List<String>? numerals = _getNumeralsForLocale(locale);
if (numerals == null) return '0123456789';
return numerals.join();
}