copyWith method
FLineCalendarItemStyle
copyWith({
- BoxDecoration? decoration,
- BoxDecoration? focusedDecoration,
- Color? todayIndicatorColor,
- TextStyle? dateTextStyle,
- TextStyle? weekdayTextStyle,
Returns a FLineCalendarItemStyle with the given properties replaced.
Implementation
FLineCalendarItemStyle copyWith({
BoxDecoration? decoration,
BoxDecoration? focusedDecoration,
Color? todayIndicatorColor,
TextStyle? dateTextStyle,
TextStyle? weekdayTextStyle,
}) =>
FLineCalendarItemStyle(
decoration: decoration ?? this.decoration,
focusedDecoration: focusedDecoration ?? this.focusedDecoration,
todayIndicatorColor: todayIndicatorColor ?? this.todayIndicatorColor,
dateTextStyle: dateTextStyle ?? this.dateTextStyle,
weekdayTextStyle: weekdayTextStyle ?? this.weekdayTextStyle,
);