isFirstDayOfMonth method
Whether or not the given date is the first day of a month
Implementation
static bool isFirstDayOfMonth(DateTime day) => isSameDay(firstDayOfMonth(day), day);
Whether or not the given date is the first day of a month
static bool isFirstDayOfMonth(DateTime day) => isSameDay(firstDayOfMonth(day), day);