configureLocalTimeZone method
Implementation
Future<void> configureLocalTimeZone() async {
if (CheckPlatform().isWeb || CheckPlatform().isLinux) {
return;
}
tz.initializeTimeZones();
final String timeZoneName = await FlutterTimezone.getLocalTimezone();
tz.setLocalLocation(tz.getLocation(timeZoneName));
}