monthLastDay property
DateTime
get
monthLastDay
本月最后一天
Implementation
DateTime get monthLastDay => DateTime(year, month + 1, 1).subtract(const Duration(days: 1));
本月最后一天
DateTime get monthLastDay => DateTime(year, month + 1, 1).subtract(const Duration(days: 1));