CalendarMasamuneAdapter constructor

const CalendarMasamuneAdapter({
  1. DayOfWeek startingDayOfWeek = DayOfWeek.sunday,
  2. List<DayOfWeek> weekendDays = const [DayOfWeek.saturday, DayOfWeek.sunday],
})

MasamuneAdapter for configuring calendar functions.

startingDayOfWeek allows you to change the starting day of the week.

Select weekendDays to set holidays.

カレンダーの機能を設定するためのMasamuneAdapter

startingDayOfWeekを指定すると1週間の開始曜日を変更できます。

weekendDaysを選択すると休日を設定できます。

Implementation

const CalendarMasamuneAdapter({
  this.startingDayOfWeek = DayOfWeek.sunday,
  this.weekendDays = const [DayOfWeek.saturday, DayOfWeek.sunday],
});