Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fabiojansenbr/fd3c95c93e4194711dc3c1590e6faa32 to your computer and use it in GitHub Desktop.
Save fabiojansenbr/fd3c95c93e4194711dc3c1590e6faa32 to your computer and use it in GitHub Desktop.
Find the last day of the current month with Dart's DateTime class.
DateTime now = new DateTime.now();
DateTime lastDayOfMonth = new DateTime(now.year, now.month + 1, 0);
print("${lastDayOfMonth.month}/${lastDayOfMonth.day}");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment