byTimeZone static method

List<Country> byTimeZone(
  1. TimeZone timeZone
)

Countries sharing the given timeZone offset.

Implementation

static List<Country> byTimeZone(TimeZone timeZone) =>
    _all.where((c) => c.timeZones.contains(timeZone)).toList();