localizedTimeZones method

Future<List<TimeZoneInfo>> localizedTimeZones(
  1. Locale locale,
  2. List<String> timeZones, {
  3. TimeZoneStyle style = TimeZoneStyle.long,
})

Returns a list of TimeZoneInfo, localized in the specified Locale. The formatting style is optional.

Implementation

Future<List<TimeZoneInfo>> localizedTimeZones(
    Locale locale, List<String> timeZones,
    {TimeZoneStyle style = TimeZoneStyle.long}) {
  return _platform.localizedTimeZones(locale, timeZones, style: style);
}