copyWith method

MonthIndicatorStyle copyWith({
  1. TextStyle? textStyle,
  2. String? label,
})

Implementation

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