Answers for "get year, month in dart"

1

dateTime.now addyears dart

DateTime now = new DateTime.now();
DateTime tenYearsLater = DateTime(now.year + 10, now.month, now.day);
Posted by: Guest on January-19-2021
0

flutter get number of days in month

DateTime now = new DateTime.now();
DateTime lastDayOfMonth = new DateTime(now.year, now.month + 1, 0);
print("${lastDayOfMonth.month}/${lastDayOfMonth.day}");
Posted by: Guest on June-10-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language