dateNowChange method

Future<String> dateNowChange()

Implementation

Future<String> dateNowChange() async {
  final String currentTimeZone = await FlutterTimezone.getLocalTimezone();
  // DateTime dateTime = DateTime.now();
  return currentTimeZone;
}