firstDayOfMonth method

DateTime firstDayOfMonth()

Return first day of the month

Implementation

DateTime firstDayOfMonth() {
  return DateTime(year, month, 1);
}