thisMonthLastDay method
Implementation
DateTime thisMonthLastDay() {
final now = DateTime.now();
return DateTime(now.year, now.month,
DateTime(now.year, now.month + 1, 0).day, 23, 59, 59, 99, 999);
}
DateTime thisMonthLastDay() {
final now = DateTime.now();
return DateTime(now.year, now.month,
DateTime(now.year, now.month + 1, 0).day, 23, 59, 59, 99, 999);
}