Using flutter, I have a date string :
2024-07-13T09:30:00.000Z
I am in UK, so this time should be 10:30
Using
DateTime dateTime = DateTime.parse(event['date']).toLocal();
is still returning 09:30 as the time
How can I get the local time please.