WeekDataPickerConfig constructor

WeekDataPickerConfig({
  1. String weekDayText = 'Week',
  2. WeekDayType weekDayType = WeekDayType.TYPE_2,
  3. bool weekDayCapitalize = false,
  4. Color backgroundColor = const Color(0xFFFAFAFA),
  5. Color selectedBackgroundColor = const Color(0xFF2A2859),
  6. Color selectedDigitColor = const Color(0xFFFFFFFF),
  7. Color digitsColor = const Color(0xFF000000),
  8. Color weekDayTextColor = const Color(0xFF303030),
  9. bool enableWeekNumberText = true,
  10. bool enableMonthText = false,
  11. Color weekNumberColor = const Color(0xFFB2F5FE),
  12. Color weekNumberTextColor = const Color(0xFF000000),
  13. WeekPosition weekPosition = WeekPosition.LEFT,
})

Implementation

WeekDataPickerConfig({
  this.weekDayText = 'Week',
  this.weekDayType = WeekDayType.TYPE_2,
  this.weekDayCapitalize = false,
  this.backgroundColor = const Color(0xFFFAFAFA),
  this.selectedBackgroundColor = const Color(0xFF2A2859),
  this.selectedDigitColor = const Color(0xFFFFFFFF),
  this.digitsColor = const Color(0xFF000000),
  this.weekDayTextColor = const Color(0xFF303030),
  this.enableWeekNumberText = true,
  this.enableMonthText = false,
  this.weekNumberColor = const Color(0xFFB2F5FE),
  this.weekNumberTextColor = const Color(0xFF000000),
  this.weekPosition = WeekPosition.LEFT
});