copyWith method
WeekdayIndicatorStyle
copyWith({
- Decoration? decoration,
- EdgeInsetsGeometry? padding,
- TextStyle? textStyle,
- String? label,
Implementation
WeekdayIndicatorStyle copyWith({
Decoration? decoration,
EdgeInsetsGeometry? padding,
TextStyle? textStyle,
String? label,
}) {
return WeekdayIndicatorStyle.raw(
decoration: decoration ?? this.decoration,
padding: padding ?? this.padding,
textStyle: textStyle ?? this.textStyle,
label: label ?? this.label,
);
}