copyWith method
Implementation
MonthIndicatorStyle copyWith({TextStyle? textStyle, String? label}) {
return MonthIndicatorStyle.raw(
textStyle: textStyle ?? this.textStyle,
label: label ?? this.label,
);
}
MonthIndicatorStyle copyWith({TextStyle? textStyle, String? label}) {
return MonthIndicatorStyle.raw(
textStyle: textStyle ?? this.textStyle,
label: label ?? this.label,
);
}