firstDayOfMonth property

  1. @useResult
ZonedDateTime firstDayOfMonth

The first day of the month.

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

Implementation

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