lastMomentInThisMonth property

DateTime get lastMomentInThisMonth

Returns DateTime of the last moment in the month this DateTime is in.

This is the very end of the month.

Implementation

DateTime get lastMomentInThisMonth {
  return beginningOfNextMonth.subtract(const Duration(microseconds: 1));
}