getCalendar method

String getCalendar()

Return the name of the calendar commonly used in the locale.

Implementation

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