22

How can I calculate yesterdays date in dart/flutter? I have the date of today:

DateTime.now()

But I can't just do -1.

1 Answer 1

49
DateTime.now().subtract(Duration(days:1))

More info at https://api.flutter.dev/flutter/dart-core/DateTime-class.html

Not the answer you're looking for? Browse other questions tagged or ask your own question.