getNativePercentageSymbol method
Return the symbol used for percentages in this locale for native script.
Implementation
String getNativePercentageSymbol() {
final String jscode1 =
'new LocaleInfo("$locale").getNativePercentageSymbol()';
final String result = ILibJS.instance.evaluate(jscode1).stringResult;
return result;
}