CalendarStyle constructor

CalendarStyle({
  1. Color? backgroundColor,
  2. Color? headerColor,
  3. TextStyle? dateTextStyle,
  4. TextStyle? hourTextStyle,
  5. TextStyle? eventTitleTextStyle,
  6. TextStyle? eventDescriptionTextStyle,
  7. Color? loadingIndicatorColor,
  8. Color? timeIndicatorColor,
  9. Color? todayIndicatorColor,
})

Implementation

CalendarStyle({
  this.backgroundColor,
  this.headerColor,
  this.dateTextStyle,
  this.hourTextStyle,
  this.eventTitleTextStyle,
  this.eventDescriptionTextStyle,
  this.loadingIndicatorColor,
  this.timeIndicatorColor,
  this.todayIndicatorColor,
});