'React Native Convert a date from one timezone to another

In react native, I want to convert a date from given timezone to UTC. For this I am using this code:

let convertedDateTime = DateTime.fromISO("2022-05-09T23:00:00"",{zone : 'America/Edmonton'})

But this is not working in android but working in ios. I want the given date which in this example is 2022-05-09T23:00:00 which can be in any timezone in this case 'America/Edmonton' to convert to UTC



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source