0

enter image description here

How to convert this string to DateTime in flutter ?

  • [Datetime.parse](https://api.dart.dev/stable/2.18.5/dart-core/DateTime/parse.html) method. Check that your string is an acceptable format – returnVoid Dec 06 '22 at 21:17
  • Does this answer your question? [Convert String time and date to DateTime - Dart/Flutter](https://stackoverflow.com/questions/70439617/convert-string-time-and-date-to-datetime-dart-flutter) – TarHalda Dec 06 '22 at 21:24

1 Answers1

0

Easiest way to do so is that

DateTime.parse(StringDate.toString());
Rohan Jariwala
  • 1,564
  • 2
  • 7
  • 24