localizedTimeZones method

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

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}) {
  throw UnimplementedError('localizedTimeZones() has not been implemented.');
}