firstDayOfMonth property

  1. @useResult
LocalDate firstDayOfMonth

The first day of the month.

LocalDate(2023, 4, 11).firstDayOfMonth; // 2023-04-01

Implementation

@useResult LocalDate get firstDayOfMonth => LocalDate._(_native.firstDayOfMonth);