Can I get the timezone by passing the city and country as parameters in Flutter?
I'm using DateTime class to get a timezone like this:
DateTime var;
print('${var.timeZoneName}'); // -> +3
What I need is to get same result above by passing country/city as parameters, something like that:
Country country; // This is how the model is required, Country is a customized class
print('${country.city.timeZoneName}'); // -> +3
The question is how to resolve time zone for a city
object in someway?