firstDayOfMonth method

DateTime firstDayOfMonth()

Gets the first day of this month

Implementation

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