findFirstDateOfTheMonth static method

DateTime findFirstDateOfTheMonth(
  1. DateTime dateTime
)

Implementation

static DateTime findFirstDateOfTheMonth(DateTime dateTime) =>
    DateTime(dateTime.year, dateTime.month, 1);