getNativeExponential method

String getNativeExponential()

Return the symbol used for exponential in this locale for native script.

Implementation

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