getTimeZoneIdentifiers static method

String getTimeZoneIdentifiers(
  1. String zone
)

Implementation

static String getTimeZoneIdentifiers(String zone) {
  final res = timeZoneDatabase.locations[zone]?.currentTimeZone.abbreviation;

  return res ?? "";
}