getNegativeNumberFormat method

String getNegativeNumberFormat()

Return the format template used to format negative numbers in this locale.

Implementation

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