getExponential method

String getExponential()

Return the symbol used for exponential in this locale.

Implementation

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