firstDayOfMonth static method

DateTime firstDayOfMonth(
  1. DateTime month
)

Implementation

static DateTime firstDayOfMonth(DateTime month) {
  return DateTime(month.year, month.month);
}