getNativeGroupingSeparator method
Return the separator character used to separate groups of digits on the integer side of the decimal character for the native script.
Implementation
String getNativeGroupingSeparator() {
final String jscode1 =
'new LocaleInfo("$locale").getNativeGroupingSeparator()';
final String result = ILibJS.instance.evaluate(jscode1).stringResult;
return result;
}