copyWith method
WeekIndicatorStyle
copyWith({
- String? tooltip,
- Decoration? decoration,
- EdgeInsetsGeometry? padding,
- TextStyle? textStyle,
- List<
String> ? labels,
Implementation
WeekIndicatorStyle copyWith({
String? tooltip,
Decoration? decoration,
EdgeInsetsGeometry? padding,
TextStyle? textStyle,
List<String>? labels,
}) {
return WeekIndicatorStyle.raw(
tooltip: tooltip ?? this.tooltip,
decoration: decoration ?? this.decoration,
padding: padding ?? this.padding,
textStyle: textStyle ?? this.textStyle,
labels: labels ?? this.labels,
);
}