For Example: If I search "Istanbul", local() will give us major address information i.e. City, Country, Coordinates.
What If we want to translate a query to a timezone? is it possible within the scope of this library?
Above wiki provide a list which also contains the country code field which relate to corresponding time zone.
From this library we can get country code so I was thinking that is it possible within this library to expose a time zone field using country codes.
Also, timezone provide zone location using only the zone name string in olson format. Tz Database Wiki i.e. 'America/Detroit'.
I am wondering if there is anyway we can translate simple city name or country codes to time zones. I think of a manual solution for my specific problem but if we could provide through a public dart library such as this.
For Example: If I search "Istanbul",
local()
will give us major address information i.e.City
,Country
,Coordinates
. What If we want to translate a query to a timezone? is it possible within the scope of this library?Above wiki provide a list which also contains the
country code
field which relate to corresponding time zone.From this library we can get country code so I was thinking that is it possible within this library to expose a
time zone
field using country codes.Also, timezone provide zone location using only the
zone name string
inolson
format. Tz Database Wiki i.e. 'America/Detroit'.I am wondering if there is anyway we can translate simple city name or country codes to time zones. I think of a manual solution for my specific problem but if we could provide through a public dart library such as this.
Please advise.