getTimeZone method

String getTimeZone()

Return the default time zone for this locale.

Implementation

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