Future<t.Location> getLocation([String? timeZoneName]) async { if (timeZoneName == null || timeZoneName.isEmpty) { timeZoneName = await getTimeZoneName(); } return t.getLocation(timeZoneName); }