getPercentageSymbol method

String getPercentageSymbol()

Return the symbol used for percentages in this locale.

Implementation

String getPercentageSymbol() {
  final String jscode1 = 'new LocaleInfo("$locale").getPercentageSymbol()';
  final String result = ILibJS.instance.evaluate(jscode1).stringResult;
  return result;
}