copyWith method

WeekdayIndicatorStyle copyWith({
  1. Decoration? decoration,
  2. EdgeInsetsGeometry? padding,
  3. TextStyle? textStyle,
  4. 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,
  );
}