BIS Tech
BIS Tech

Reputation: 19414

how to format string to date on flutter?

response field like this:

  print(data.openingHours[weekday]);

Result is --> {time: "9.00AM-5.00PM", status: "Open"}

I tried to format not working:

DateFormat("h:mma'-'h:mma").parse(data.openingHours[weekday]['time']);

How to format into dateTime?

Upvotes: 1

Views: 258

Answers (1)

Amir Ali Aghamali
Amir Ali Aghamali

Reputation: 642

For convenience try this package: date_format

Upvotes: 1

Related Questions