print(json["end"] + " date before parsing");
print(DateTime.parse(json["end"]).toString() + " date after parsing");
Output
I/flutter ( 7101): 2022-07-19T05:00:00+05:30 date before parsing
I/flutter ( 7101): 2022-07-18 23:30:00.000Z date after parsing
As you can see, the date before parsing is 19-07-2022 but after parsing it, the date I am getting is 18-07-2022. Why is this happening, and how to solve this?