lastDayOfMonth property

  1. @useResult
ZonedDateTime lastDayOfMonth

The last day of the month.

// 2023-04-30T00:00+08:00[Asia/Singapore]
ZonedDateTime('Asia/Singapore', 2023, 4, 11).lastDayOfMonth;

Implementation

@useResult ZonedDateTime get lastDayOfMonth => ZonedDateTime._convert(timezone, _native.lastDayOfMonth);