getNativeDigits method
Return the digits of the native script if they are defined.
Implementation
String? getNativeDigits() {
final String jscode1 = 'new LocaleInfo("$locale").getNativeDigits()';
final String result = ILibJS.instance.evaluate(jscode1).stringResult;
return result.isNotEmpty ? result : null;
}